Inspect and view changes in Element Deleter 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": "Element Deleter",
"version": "1.0",
"description": "A Firefox add-on that deletes a specified element on click.",
"permissions": [
"activeTab"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "crosshair006.png",
"48": "crosshair006.png",
"128": "crosshair006.png"
}
},
"icons": {
"16": "crosshair006.png",
"48": "crosshair006.png",
"128": "crosshair006.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{37d97612-ad87-445d-a551-e3e3d0d89302}"
}
}
}