Inspect and view changes in Livescratch: Live Scratch Collabs! 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
{
"name": "Livescratch: Live Scratch Collabs!",
"description": "Multiple Scratchers Can Work Together For The Same Project!",
"version": "0.1.1",
"version_name": "0.1.1",
"icons": {
"128": "icon128.png"
},
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"https://scratch.mit.edu/projects*"
],
"css": [],
"js": [
"injectors/editor.js"
]
},
{
"matches": [
"https://scratch.mit.edu/mystuff*"
],
"css": [],
"js": [
"injectors/mystuff.js"
]
},
{
"matches": [
"https://scratch.mit.edu/*"
],
"css": [
"scripts/badge.css"
],
"js": [
"scripts/verify.js",
"injectors/all.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
],
"host_permissions": [
"https://scratch.mit.edu/"
],
"optional_permissions": [
"notifications"
],
"web_accessible_resources": [
{
"resources": [
"/scripts/editor.js",
"/scripts/vm.js",
"/scripts/badge.js",
"/scripts/mystuff.js",
"/scripts/turbowarp_editor.js",
"/img/LogoLiveScratch.svg",
"/sounds/ping.mp3"
],
"matches": [
"<all_urls>"
]
}
],
"externally_connectable": {
"matches": [
"https://scratch.mit.edu/*"
]
},
"action": {
"default_popup": "popups/popup.html"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}