Remove Element
Creates a contextual menu item to remove an element from the DOM
Remove Element क्या है?
Remove Element https://weilstreet.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Creates a contextual menu item to remove an element from the DOM"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Remove Element एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Right-click anything on the page and remove it. Useful if an ad is in the way of you reading an article. If you accidentally remove too much, just refresh the page - removing items is temporary. After installation you must reload any open pages for the extension to work.
एक्सटेंशन की मूल जानकारी
नाम | Remove Element |
ID | lnfececmldedlanmhbeljgdaofncfeho |
आधिकारिक URL | https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho |
विवरण | Creates a contextual menu item to remove an element from the DOM |
फ़ाइल का आकार | 6.35 KB |
स्थापना संख्या | 2,523 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2018-09-05 |
प्रकाशन तिथि | 2018-09-04 |
रेटिंग | 3.94/5 कुल 32 रेटिंग्स |
डेवलपर | https://weilstreet.com |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Remove Element", "version": "1.0.2", "description": "Creates a contextual menu item to remove an element from the DOM", "manifest_version": 2, "icons": { "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "contextMenus", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "remove.js" ] } ] } |