Canvas Themeinator
Gives Canvas more themes
What is Canvas Themeinator?
Canvas Themeinator is a Chrome extension developed by one23four56, and its main feature is "Gives Canvas more themes".
Extension Screenshots
Download Canvas Themeinator Extension CRX File
Download Canvas Themeinator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension adds themes to Canvas. Currently, there are 10: -Dark -AMOLED Dark -Light -Aqua -Purple -Dark Purple -Blue -Dark Blue -Green -Orange +Custom Themes (currently in beta) This extension is open-source. The GitHub link is below: https://github.com/one23four56/canvas-themeinator This extension is a SIDE PROJECT of mine. Do not expect regular updates, I am only maintaining this because I use it. If you really want a feature, go onto GitHub and add it yourself.
Extension Basic Information
Name | Canvas Themeinator |
ID | ffhddhjbbaocbeejjijfioimiplpfgbb |
Official URL | https://chromewebstore.google.com/detail/canvas-themeinator/ffhddhjbbaocbeejjijfioimiplpfgbb |
Description | Gives Canvas more themes |
File Size | 25.61 KB |
Installation Count | 299 |
Current Version | 1.5.1 |
Last Updated | 2021-04-17 |
Publish Date | 2021-04-12 |
Rating | 5.00/5 Total 2 Ratings |
Developer | one23four56 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/one23four56/canvas-themeinator |
Privacy Policy Page URL | https://github.com/one23four56/canvas-themeinator/blob/master/privacy.md |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Canvas Themeinator", "version": "1.5.1", "description": "Gives Canvas more themes", "content_scripts": [ { "matches": [ "https:\/\/*.instructure.com\/*" ], "css": [ "style.css" ], "js": [ "content.js" ], "run_at": "document_start" } ], "permissions": [ "storage" ], "action": { "default_title": "Choose Theme", "default_popup": "html\/index.html" }, "icons": { "32": "icon.png" } } |