Inspect and view changes in Good Thing/Bad Thing 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": "Good Thing/Bad Thing",
"description": "Change the way you see the internet. Replace common words like \"fascist\" or \"equity\" with \"Bad Thing\" or \"Good Thing\".",
"version": "1.2.0.1",
"manifest_version": 3,
"author": "Yes Nick Carter",
"options_page": "options.html",
"permissions": [
"storage"
],
"icons": {
"16": "images/bad_things16.png",
"128": "images/bad_things128.png"
},
"action": {
"default_popup": "options.html",
"default_icon": {
"128": "images/bad_things128.png"
}
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"all_frames": true,
"js": [
"content_script.js"
],
"run_at": "document_end"
}
]
}