Canvas Themeinator
Gives Canvas more themes
Wat is Canvas Themeinator?
Canvas Themeinator is een Chrome-extensie ontwikkeld door one23four56, en de belangrijkste functie is "Gives Canvas more themes".
Extensie Screenshots
Download het CRX-bestand van de extensie Canvas Themeinator
Download Canvas Themeinator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | ffhddhjbbaocbeejjijfioimiplpfgbb |
| Officiële URL | https://chromewebstore.google.com/detail/canvas-themeinator/ffhddhjbbaocbeejjijfioimiplpfgbb |
| Beschrijving | Gives Canvas more themes |
| Bestandsgrootte | 25.61 KB |
| Aantal Installaties | 299 |
| Huidige Versie | 1.5.1 |
| Laatst Bijgewerkt | 2021-04-17 |
| Publicatiedatum | 2021-04-12 |
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | one23four56 |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/one23four56/canvas-themeinator |
| URL van de Privacybeleid Pagina | https://github.com/one23four56/canvas-themeinator/blob/master/privacy.md |
| Ondersteunde Talen | 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"
}
} | |