Inspect and view changes in Scratch 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": "Scratch Dark mode",
"version": "0.1",
"author": "Basha coder",
"description": "This is an darkmode extension for scratch.",
"icons": {
"16": "128.ico",
"48": "128.ico",
"128": "128.ico"
},
"action": {
"default_title": "Scratch extension",
"default_icon": {
"128": "128.ico"
}
},
"content_scripts": [
{
"matches": [
"https://scratch.mit.edu/*"
],
"js": [
"script.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}