Enhancements to Canvas like dark mode, better todo list, GPA calculator, and more!
To contact me, please email ksucpea@gmail.com, or you can open an issue within the "Issues" tab on GitHub.
Better Canvas introduces improvements to the Canvas user interface:
- Fully customizable dark mode (choose from premade options or manually edit dark mode)
- Automatic scheduling for dark mode
- Dashboard card color palletes
- Themes created by users
- Assignments due list
- Dashboard notes
- Better todo list
- Custom fonts
- Condensed cards
- Dashboard grades
- Remove sidebar logo
- Customizable card links
- Gradient dashboard cards
- Advanced card customization
- GPA calculator (college and highschool)
- Browser wide popup assignment reminder
- Preview assignments and announcements from the dashboard
Don't see Better Canvas in your language?
Check out our Crowdin instance to help translate Better Canvas
This extension is using chrome.i18n for localization.
- Request a new language here: Crowdin BetterCanvas
Important
The language must be one of the locale codes uesed by chrome.
- Then wait for the language to be added.
- Then translate all strings to the new language.
- Click Me to translate a existing language.
- Update the strings.
- Then wait for the changes to be merged into bettercanvas
To install, run, and build with this repository,
- Clone the repository locally with
git clone https://github.com/ksucpea/bettercanvas.git
- Visit
chrome://extensions
in your browser. - Enable developer mode by toggling the switch in the upper right corner of the viewport.
- Click the "Load upacked" button in the header.
- When prompted to open a file, select the root directory of this repository.
To use Better Canvas, select your browser below to install the extension.
- Once the extension is installed, navigate to your institution's Canvas homepage.
- To edit the available options, click on the "Extensions" button in the upper right corner of the viewport.
- When the menu opens, click on the Better Canvas extension.
- A menu will appear with configuration options for your Canvas homepage.
- New User Made Themes
- Updded Themes Submission
Color | Hex |
---|---|
Background | #161616 |
Text | #ffffff |
Accent 01 | #ff002e |
Accent 02 | #ff5200 |
Accent 03 | #ff47ad |
To add a new feature, please follow these guidelines.
Note: I will probably make this automated in the future but it's a bit of work right now.
- Should be a unqiue one/two word storage identifier to indicate its status. (ie "dark_mode" or "dashboard_grades")
- If it has sub options (options that are specific to the main feature) these will also each need a unique identifier.
- All options are synced and have a 8kb storage limit, so if your feature needs more than this please contact me.
- Add the appropriate HTML into this file. The corresponding id and name (see below) should be the identifier.
- If it has no sub options, it should be put in the same container as the other options with no sub options:
<div class="option" id="<identifier>">
<input type="radio" id="off" name="<identifier>">
<input type="radio" id="on" name="<identifier>">
<div class="slider">
<div class="sliderknob"></div>
<div class="sliderbg"></div>
</div>
<span class="option-name"><option name></span>
</div>
- If it does have sub options it becomes it's own container:
<div class="option-container">
<div class="option" id="<identifier>">
<input type="radio" id="off" name="<identifier>">
<input type="radio" id="on" name="<identifier>">
<div class="slider">
<div class="sliderknob"></div>
<div class="sliderbg"></div>
</div>
<span class="option-name"><option name></span>
</div>
<div class="sub-options">
<div class="sub-option">
<input type="checkbox" id="<sub identifier>" name="<sub identifier>">
<label for="<sub identifier>" class="sub-text"><option name></label>
</div>
</div>
</div>
- Add the main identifier into the
syncedSwitches
array. - If you have sub-options:
- Add these identifiers to the array found under the comment that says
//checkboxes
.
- Add these identifiers to the array found under the comment that says
- Add all identifiers into the
syncedOptions
array. - Add a default value for your option to the
default_options
array.- Preferably this value should be
false
for booleans or""
for strings (null
can also be used if Canvas has a default for this option already)
- Preferably this value should be
- There should be a function(s) included in the this file that does the work. The name should clearly indicate it's purpose.
- Under
applyOptionsChanges()
, add a switch case to call this function when the menu toggle is changed. - Depending on what your feature does, it needs to be told when to fire.
- If the function changes any aspect of the dashboard, it should be put inside
checkDashboardReady()
. - If the function only adds css, it should be added to
applyAestheticChanges()
, and in this case should not be a separate function, instead add the css to the existing styles found in this function. - Anything else should be put under
startExtension()
and should be placed no higher than thecheckDashboardReady
function found here.
- If the function changes any aspect of the dashboard, it should be put inside
To add a new theme, please follow these guidelines.
You can export a theme using the export tool in the menu and sending an email to me, or you can merge it here after doing the following:
- Go to the Themes tab and export dark mode, card images, card colors, and custom font. - The only on/off toggles that need be included are
disable_color_overlay
andgradient_cards
. Any other toggles aren't necessary, so you should manually add these keys and the appropriate values in with the export code. - Pick a unique id for the theme, doesn't matter how long this is.
- Add the export code under
getTheme()
.- Make sure it follows this format:
"theme-<id>: { "exports": {"..."}, "preview": "..." }
- Make sure it follows this format:
- For the preivew, try to pick the smallest image size from the card images (under ~50kb is perfect), or you can find a smaller display image that isn't included in the card images.
- Add the following under all the other theme buttons:
<button id="theme-<id>" class="theme-button customization-button"><theme name> by <you></button>
- The theme name should be one/two words so it doesn't take up too much space.
.
├── README.md
├── _locales
│ ├── en
│ │ └── messages.json
│ ├── es
│ │ └── messages.json
| ├── de
| | └── messages.json
| ├── fr
| | └── messages.json
| ├── it
| | └── messages.json
| ├── ja
| | └── messages.json
| ├── pt_PT
| | └── messages.json
| ├── ru
| | └── messages.json
| ├── sv
| | └── messages.json
| ├── zh_CN
| | └── messages.json
| └── zh_TW
| └── messages.json
├── css
│ ├── content.css
│ ├── options.css
│ └── popup.css
├── html
│ ├── options.html
│ └── popup.html
├── icon
│ ├── icon-128.png
│ ├── icon-16.png
│ ├── icon-19.png
│ ├── icon-32.png
│ ├── icon-38.png
│ ├── icon-48.png
│ ├── icon-wide.png
│ ├── iconwpadding.png
│ └── oldicon-128.png
├── js
│ ├── background.js
│ ├── content.js
│ └── popup.js
└── manifest.json
- Linux/Unix
- Install tree command line tool
- Use the tree command to generate file structure:
tree
Learn more about tree commands for Linux/Unix here.
- Windows
- Use the tree command to generate file structure:
tree /
Learn more about tree commands for Windows here.