Canvas Themeinator

Gives Canvas more themes

Qu'est-ce que Canvas Themeinator ?

Canvas Themeinator est une extension Chrome développée par one23four56, et sa fonction principale est "Gives Canvas more themes".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Canvas Themeinator

Téléchargez les fichiers d'extension Canvas Themeinator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Canvas Themeinator Canvas Themeinator
ID ffhddhjbbaocbeejjijfioimiplpfgbb
URL Officiel https://chromewebstore.google.com/detail/canvas-themeinator/ffhddhjbbaocbeejjijfioimiplpfgbb
Description Gives Canvas more themes
Taille du Fichier 25.61 KB
Nombre d'Installations 299
Version Actuelle 1.5.1
Dernière Mise à Jour 2021-04-17
Date de Publication 2021-04-12
Évaluation 5.00/5 Total 2 Évaluations
Développeur one23four56
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/one23four56/canvas-themeinator
URL de la Page de Politique de Confidentialité https://github.com/one23four56/canvas-themeinator/blob/master/privacy.md
Langues Prises en Charge 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"
    }
}