Moodle De-Clutterer
Gets rid of old classes on the Rose-Hulman Moodle and allows users to change the accent color.
Co to jest Moodle De-Clutterer?
Moodle De-Clutterer to rozszerzenie Chrome opracowane przez jjc8266, a jego główną funkcją jest „Gets rid of old classes on the Rose-Hulman Moodle and allows users to change the accent color.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Moodle De-Clutterer
Pobierz pliki rozszerzeń Moodle De-Clutterer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
*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.
Podstawowe informacje o rozszerzeniu
Nazwa | Moodle De-Clutterer |
ID | gbffiaclpclbeincegnipgiledglgfho |
Oficjalny URL | https://chromewebstore.google.com/detail/moodle-de-clutterer/gbffiaclpclbeincegnipgiledglgfho |
Opis | Gets rid of old classes on the Rose-Hulman Moodle and allows users to change the accent color. |
Rozmiar pliku | 59.34 KB |
Liczba instalacji | 50 |
Aktualna Wersja | 2.8 |
Ostatnia Aktualizacja | 2023-09-01 |
Data Publikacji | 2022-12-01 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | jjc8266 |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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;" } } |