Moodle De-Clutterer

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

Was ist Moodle De-Clutterer?

Moodle De-Clutterer ist eine Chrome-Erweiterung, die von jjc8266 entwickelt wurde, und ihr Hauptmerkmal ist "Gets rid of old classes on the Rose-Hulman Moodle and allows users to change the accent color.".

Erweiterungsscreenshots

screenshot

Moodle De-Clutterer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Moodle De-Clutterer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        *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.                    

Grundlegende Informationen zur Erweiterung

Name Moodle De-Clutterer Moodle De-Clutterer
ID gbffiaclpclbeincegnipgiledglgfho
Offizielle URL https://chromewebstore.google.com/detail/moodle-de-clutterer/gbffiaclpclbeincegnipgiledglgfho
Beschreibung Gets rid of old classes on the Rose-Hulman Moodle and allows users to change the accent color.
Dateigröße 59.34 KB
Installationsanzahl 50
Aktuelle Version 2.8
Letztes Update 2023-09-01
Veröffentlichungsdatum 2022-12-01
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler jjc8266
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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;"
    }
}