Canvas Themeinator

Gives Canvas more themes

Hvad er Canvas Themeinator?

Canvas Themeinator er en Chrome-udvidelse udviklet af one23four56, og dens hovedfunktion er "Gives Canvas more themes".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Canvas Themeinator-udvidelses-CRX-fil

Download Canvas Themeinator-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Canvas Themeinator Canvas Themeinator
ID ffhddhjbbaocbeejjijfioimiplpfgbb
Officiel URL https://chromewebstore.google.com/detail/canvas-themeinator/ffhddhjbbaocbeejjijfioimiplpfgbb
Beskrivelse Gives Canvas more themes
Filstørrelse 25.61 KB
Antal Installationer 299
Nuværende Version 1.5.1
Senest Opdateret 2021-04-17
Udgivelsesdato 2021-04-12
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler one23four56
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/one23four56/canvas-themeinator
URL til Fortrolighedspolitik Side https://github.com/one23four56/canvas-themeinator/blob/master/privacy.md
Understøttede Sprog 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"
    }
}