Inspect and view changes in betterMoodle source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "betterMoodle",
"description": "Moodle but better",
"version": "1.3",
"author": "Silens",
"action": {
"default_icon": "icon.png"
},
"icons": {
"48": "icon.png",
"64": "icon.png",
"96": "icon.png"
},
"host_permissions": [
"*://moodle.univ-lr.fr/2022/my/"
],
"content_scripts": [
{
"matches": [
"*://moodle.univ-lr.fr/2022/my/"
],
"js": [
"script.js"
],
"run_at": "document_start"
},
{
"matches": [
"*://moodle.univ-lr.fr/2022/*"
],
"js": [
"darkmode.js"
],
"run_at": "document_end"
}
]
}