elementZapper
Disappear at once!
elementZapper क्या है?
elementZapper http://www.dsebastien.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Disappear at once!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में elementZapper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | efeljanahmlnjhckmohcfbgkfdjdmnog |
आधिकारिक URL | https://chrome.google.com/webstore/detail/elementzapper/efeljanahmlnjhckmohcfbgkfdjdmnog |
विवरण | Disappear at once! |
फ़ाइल का आकार | 18.52 KB |
स्थापना संख्या | 459 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2013-05-13 |
प्रकाशन तिथि | 2013-05-13 |
रेटिंग | 2.33/5 कुल 3 रेटिंग्स |
डेवलपर | http://www.dsebastien.net |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://www.dsebastien.net |
सहायता पृष्ठ URL | https://github.com/dsebastien/elementZapper |
समर्थित भाषाएँ | 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" ] } ] } |