Inspect and view changes in code.org Dark mode 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
{
"manifest_version": 3,
"name": "code.org Dark mode",
"version": "0.1",
"author": "Basha coder",
"description": "This is an dark mode extension for code.org.",
"icons": {
"16": "image.png",
"48": "image.png",
"128": "image.png"
},
"action": {
"default_title": "Code.org dark mode extension",
"default_icon": {
"128": "image.png"
}
},
"content_scripts": [
{
"matches": [
"https://code.org/*",
"https://studio.code.org/*"
],
"js": [
"script.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}