Canvas Themeinator

Gives Canvas more themes

Co je Canvas Themeinator?

Canvas Themeinator je rozšíření Chrome vyvinuté one23four56, a jeho hlavní funkcí je „Gives Canvas more themes“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Canvas Themeinator

Stáhněte si soubory rozšíření Canvas Themeinator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Canvas Themeinator Canvas Themeinator
ID ffhddhjbbaocbeejjijfioimiplpfgbb
Oficiální URL https://chromewebstore.google.com/detail/canvas-themeinator/ffhddhjbbaocbeejjijfioimiplpfgbb
Popis Gives Canvas more themes
Velikost souboru 25.61 KB
Počet instalací 299
Aktuální Verze 1.5.1
Poslední Aktualizace 2021-04-17
Datum Vydání 2021-04-12
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář one23four56
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/one23four56/canvas-themeinator
URL Stránky Zásad Ochrany Soukromí https://github.com/one23four56/canvas-themeinator/blob/master/privacy.md
Podporované Jazyky 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"
    }
}