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.”。
扩展截图
下载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 |
ID | gbffiaclpclbeincegnipgiledglgfho |
官方URL | 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;" } } |