Moodle De-Clutterer

Gets rid of old classes on the Rose-Hulman Moodle and allows users to change the accent color.

Cos'è Moodle De-Clutterer?

Moodle De-Clutterer è un'estensione di Chrome sviluppata da jjc8266, e la sua funzione principale è "Gets rid of old classes on the Rose-Hulman Moodle and allows users to change the accent color.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Moodle De-Clutterer

Scarica i file di estensione Moodle De-Clutterer 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

                        *IMPORTANT*
*Currently doesn't work with the new Moodle! Will update when fixed.*

Allows users to hide unwanted classes on the Rose-Hulman Moodle page, as well as change the accent colors.                    

Informazioni di Base sull'Estensione

Nome Moodle De-Clutterer Moodle De-Clutterer
ID gbffiaclpclbeincegnipgiledglgfho
URL Ufficiale https://chromewebstore.google.com/detail/moodle-de-clutterer/gbffiaclpclbeincegnipgiledglgfho
Descrizione Gets rid of old classes on the Rose-Hulman Moodle and allows users to change the accent color.
Dimensione del File 59.34 KB
Conteggio Installazioni 50
Versione Corrente 2.8
Ultimo Aggiornamento 2023-09-01
Data di Pubblicazione 2022-12-01
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore jjc8266
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Moodle De-Clutterer",
    "description": "Gets rid of old classes on the Rose-Hulman Moodle and allows users to change the accent color.",
    "version": "2.8",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab",
        "tabs"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/roseR16.png",
            "32": "\/images\/roseR32.png",
            "48": "\/images\/roseR48.png",
            "128": "\/images\/roseR128.png"
        }
    },
    "icons": {
        "16": "\/images\/roseR16.png",
        "32": "\/images\/roseR32.png",
        "48": "\/images\/roseR48.png",
        "128": "\/images\/roseR128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.moodle.rose-hulman.edu\/*"
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' https:\/\/ajax.googleapis.com;"
    }
}