Inspect and view changes in Amazon Div 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": "Amazon Div Remover",
"version": "1.1",
"description": "Remove specified div ID from Amazon",
"permissions": [
"activeTab",
"webNavigation"
],
"browser_action": {
"default_icon": {
"64": "icon.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://www.amazon.co.uk/*",
"https://www.amazon.com/*"
],
"js": [
"contentScript.js"
]
}
],
"background": {
"scripts": [
"backgroundScript.js"
],
"persistent": false
},
"icons": {
"64": "icon.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{d69eb4c7-410a-4e9a-9c97-08cd93b1def0}"
}
}
}