Moodle De-Clutterer

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

什麼是Moodle De-Clutterer?

Moodle De-Clutterer是由jjc8266開發的Chrome擴展程式,該擴展的主要功能是“Gets rid of old classes on the Rose-Hulman Moodle and allows users to change the accent color.”。

擴展截圖

screenshot

下載Moodle De-Clutterer擴展crx文件

下載Moodle De-Clutterer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Moodle De-Clutterer Moodle De-Clutterer
ID gbffiaclpclbeincegnipgiledglgfho
官方網址 https://chromewebstore.google.com/detail/moodle-de-clutterer/gbffiaclpclbeincegnipgiledglgfho
簡介 Gets rid of old classes on the Rose-Hulman Moodle and allows users to change the accent color.
檔案大小 59.34 KB
安裝次數 50
目前版本 2.8
更新時間 2023-09-01
上架時間 2022-12-01
評分 5.00/5 共 1 次評分
開發者 jjc8266
電子郵箱 [email protected]
付費類型 free
支援的語言 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;"
    }
}