Canvas Themeinator

Gives Canvas more themes

Co to jest Canvas Themeinator?

Canvas Themeinator to rozszerzenie Chrome opracowane przez one23four56, a jego główną funkcją jest „Gives Canvas more themes”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Canvas Themeinator

Pobierz pliki rozszerzeń Canvas Themeinator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Canvas Themeinator Canvas Themeinator
ID ffhddhjbbaocbeejjijfioimiplpfgbb
Oficjalny URL https://chromewebstore.google.com/detail/canvas-themeinator/ffhddhjbbaocbeejjijfioimiplpfgbb
Opis Gives Canvas more themes
Rozmiar pliku 25.61 KB
Liczba instalacji 299
Aktualna Wersja 1.5.1
Ostatnia Aktualizacja 2021-04-17
Data Publikacji 2021-04-12
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper one23four56
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/one23four56/canvas-themeinator
Adres URL Strony Polityki Prywatności https://github.com/one23four56/canvas-themeinator/blob/master/privacy.md
Obsługiwane Języki 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"
    }
}