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 - это расширение Chrome, разработанное jjc8266, и его основная функция - "Gets rid of old classes on the Rose-Hulman Moodle and allows users to change the accent color.".
Снимки экрана расширения
Скачать файл CRX расширения Moodle De-Clutterer
Скачайте файлы расширений 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;" } } |