Moodle De-Clutterer

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

Moodle De-Clutterer là gì?

Moodle De-Clutterer là một tiện ích mở rộng Chrome được phát triển bởi jjc8266, và tính năng chính của nó là "Gets rid of old classes on the Rose-Hulman Moodle and allows users to change the accent color.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Moodle De-Clutterer

Tải xuống các tệp mở rộng Moodle De-Clutterer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Moodle De-Clutterer Moodle De-Clutterer
ID gbffiaclpclbeincegnipgiledglgfho
URL Chính Thức https://chromewebstore.google.com/detail/moodle-de-clutterer/gbffiaclpclbeincegnipgiledglgfho
Mô tả Gets rid of old classes on the Rose-Hulman Moodle and allows users to change the accent color.
Kích Thước Tệp 59.34 KB
Số Lần Cài Đặt 50
Phiên Bản Hiện Tại 2.8
Cập Nhật Lần Cuối 2023-09-01
Ngày Phát Hành 2022-12-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển jjc8266
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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;"
    }
}