Dark Moodle
Switch moodle to dark mode
What is Dark Moodle?
Dark Moodle is a Chrome extension developed by Mohammed Ezzedine, and its main feature is "Switch moodle to dark mode".
Extension Screenshots
Download Dark Moodle Extension CRX File
Download Dark Moodle extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Modifying the theme of the moodle website into dark mode.
Extension Basic Information
Name | ![]() |
ID | kmjncmakkkaoejgblgdoobaljljdjgjp |
Official URL | https://chrome.google.com/webstore/detail/dark-moodle/kmjncmakkkaoejgblgdoobaljljdjgjp |
Description | Switch moodle to dark mode |
File Size | 61.06 KB |
Installation Count | 319 |
Current Version | 0.1.2 |
Last Updated | 2020-09-08 |
Publish Date | 2020-09-07 |
Rating | 1.00/5 Total 1 Ratings |
Developer | Mohammed Ezzedine |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Dark Moodle", "version": "0.1.2", "description": "Switch moodle to dark mode", "content_scripts": [ { "css": [ "styles.css" ], "js": [ "index.js" ], "matches": [ "https:\/\/adfs.aub.edu.lb\/*", "https:\/\/lms.aub.edu.lb\/*" ] } ], "icons": { "48": "moodle-logo-48.png", "96": "moodle-logo-96.png" }, "browser_action": { "default_icon": { "16": "moodle-logo.png", "24": "moodle-logo.png", "32": "moodle-logo.png" }, "default_title": "Dark Moodle" }, "permissions": [ "activeTab" ] } |