Canvas Themeinator
Gives Canvas more themes
Was ist Canvas Themeinator?
Canvas Themeinator ist eine Chrome-Erweiterung, die von one23four56 entwickelt wurde, und ihr Hauptmerkmal ist "Gives Canvas more themes".
Erweiterungsscreenshots
Canvas Themeinator-Erweiterungs-CRX-Datei herunterladen
Laden Sie Canvas Themeinator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ffhddhjbbaocbeejjijfioimiplpfgbb |
| Offizielle URL | https://chromewebstore.google.com/detail/canvas-themeinator/ffhddhjbbaocbeejjijfioimiplpfgbb |
| Beschreibung | Gives Canvas more themes |
| Dateigröße | 25.61 KB |
| Installationsanzahl | 299 |
| Aktuelle Version | 1.5.1 |
| Letztes Update | 2021-04-17 |
| Veröffentlichungsdatum | 2021-04-12 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | one23four56 |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/one23four56/canvas-themeinator |
| URL der Datenschutzrichtlinien-Seite | https://github.com/one23four56/canvas-themeinator/blob/master/privacy.md |
| Unterstützte Sprachen | 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"
}
} | |