Moodle De-Clutterer

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

Apa itu Moodle De-Clutterer?

Moodle De-Clutterer adalah ekstensi Chrome yang dikembangkan oleh jjc8266, dan fitur utamanya adalah "Gets rid of old classes on the Rose-Hulman Moodle and allows users to change the accent color.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Moodle De-Clutterer

Unduh file ekstensi Moodle De-Clutterer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Moodle De-Clutterer Moodle De-Clutterer
ID gbffiaclpclbeincegnipgiledglgfho
URL Resmi https://chromewebstore.google.com/detail/moodle-de-clutterer/gbffiaclpclbeincegnipgiledglgfho
Deskripsi Gets rid of old classes on the Rose-Hulman Moodle and allows users to change the accent color.
Ukuran File 59.34 KB
Jumlah Instalasi 50
Versi Saat Ini 2.8
Terakhir Diperbarui 2023-09-01
Tanggal Publikasi 2022-12-01
Penilaian 5.00/5 Total 1 Penilaian
Pengembang jjc8266
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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;"
    }
}