Canvas Themeinator
Gives Canvas more themes
Cos'è Canvas Themeinator?
Canvas Themeinator è un'estensione di Chrome sviluppata da one23four56, e la sua funzione principale è "Gives Canvas more themes".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Canvas Themeinator
Scarica i file di estensione Canvas Themeinator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | ffhddhjbbaocbeejjijfioimiplpfgbb |
| URL Ufficiale | https://chromewebstore.google.com/detail/canvas-themeinator/ffhddhjbbaocbeejjijfioimiplpfgbb |
| Descrizione | Gives Canvas more themes |
| Dimensione del File | 25.61 KB |
| Conteggio Installazioni | 299 |
| Versione Corrente | 1.5.1 |
| Ultimo Aggiornamento | 2021-04-17 |
| Data di Pubblicazione | 2021-04-12 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | one23four56 |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/one23four56/canvas-themeinator |
| URL della Pagina della Politica sulla Privacy | https://github.com/one23four56/canvas-themeinator/blob/master/privacy.md |
| Lingue Supportate | 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"
}
} | |