Inspect and view changes in Boomer Remover 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": 2,
"name": "Boomer Remover",
"version": "1.2.0",
"description": "Replace covid related words with boomer removal related words.",
"default_locale": "en",
"icons": {
"48": "icons/icon.svg",
"96": "icons/icon.svg"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/boomerMap.js",
"js/storage.js",
"js/replacer.js"
]
}
],
"background": {
"scripts": [
"js/setup.js"
]
},
"permissions": [
"activeTab",
"storage"
],
"browser_action": {
"default_icon": "icons/icon.svg",
"default_title": "Boomer Remover",
"default_popup": "popup/boomer_remover.html"
},
"developer": {
"name": "Inklove",
"url": "https://bitbucket.org/inklove/"
}
}