Inspect and view changes in SuperSmashBrowser 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",
"name": "SuperSmashBrowser",
"version": "1.0.0",
"description": "Take our your anger on your browser!",
"web_accessible_resources": [
{
"resources": [
"images/*"
],
"matches": [
"*://*/*"
]
}
],
"manifest_version": 3,
"action": {
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"scripting"
],
"icons": {
"16": "./images/logo16.png",
"48": "./images/logo48.png",
"128": "./images/logo128.png"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content_script.js",
"./js/vanish_everything.js",
"./js/vanish.js",
"./js/hammer.js"
]
}
],
"background": {
"service_worker": "js/background.js"
}
}