Dark Moodle
Switch moodle to dark mode
Wat is Dark Moodle?
Dark Moodle is een Chrome-extensie ontwikkeld door Mohammed Ezzedine, en de belangrijkste functie is "Switch moodle to dark mode".
Extensie Screenshots
Download het CRX-bestand van de extensie Dark Moodle
Download Dark Moodle-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Modifying the theme of the moodle website into dark mode.
Basisinformatie over de Extensie
Naam | ![]() |
ID | kmjncmakkkaoejgblgdoobaljljdjgjp |
Officiële URL | https://chrome.google.com/webstore/detail/dark-moodle/kmjncmakkkaoejgblgdoobaljljdjgjp |
Beschrijving | Switch moodle to dark mode |
Bestandsgrootte | 61.06 KB |
Aantal Installaties | 319 |
Huidige Versie | 0.1.2 |
Laatst Bijgewerkt | 2020-09-08 |
Publicatiedatum | 2020-09-07 |
Beoordeling | 1.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Mohammed Ezzedine |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |