elementZapper
Disappear at once!
What is elementZapper?
elementZapper is a Chrome extension developed by http://www.dsebastien.net, and its main feature is "Disappear at once!".
Extension Screenshots
Download elementZapper Extension CRX File
Download elementZapper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension allows you to easily remove elements from Web pages. Let's say that a gigantic cat image is bothering you (though you find it lovely) on some Website. You want it gone? Then right click on it, select "Zap!" and there you have it, gone! The same applies to selections that you make on pages; just select a bunch of paragraphs, images, etc, right click, select "Zap!" and they're gone.
Extension Basic Information
Name | |
ID | efeljanahmlnjhckmohcfbgkfdjdmnog |
Official URL | https://chrome.google.com/webstore/detail/elementzapper/efeljanahmlnjhckmohcfbgkfdjdmnog |
Description | Disappear at once! |
File Size | 18.52 KB |
Installation Count | 459 |
Current Version | 1.1 |
Last Updated | 2013-05-13 |
Publish Date | 2013-05-13 |
Rating | 2.33/5 Total 3 Ratings |
Developer | http://www.dsebastien.net |
Payment Type | free |
Extension Website | http://www.dsebastien.net |
Help Page URL | https://github.com/dsebastien/elementZapper |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "elementZapper", "description": "Disappear at once!", "version": "1.1", "icons": { "128": "zap_128.png", "64": "zap_64.png", "32": "zap_32.png", "16": "zap_16.png" }, "permissions": [ "contextMenus", "tabs" ], "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ] } |