Addon that will help you to remove any element from page in one 2 click
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": "Zaqwes Remover",
"version": "0.0.2",
"manifest_version": 2,
"description": "Addon that will help you to remove any element from page in one 2 click",
"background": {
"page": "background.html"
},
"icons": {
"16": "remover.png",
"48": "remover.png",
"128": "remover.png"
},
"browser_action": {
"default_icon": "remover.png",
"default_title": "Click to activate remove on click"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"exclude_matches": [
"http://*/*.jpg",
"http://*/*.png"
],
"js": [
"remover.js"
]
}
]
}