Delete Element
Adds option to context menu to quickly delete a page element
Delete Element क्या है?
Delete Element lifeinweeksapp द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds option to context menu to quickly delete a page element"।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Delete Element एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Adds option to context menu to quickly delete a page element. Does NOT permanently delete the item. Use an ad-blocker for that.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | aeafmlpmnmbckkaapajfhdmbbmdapngm |
आधिकारिक URL | https://chrome.google.com/webstore/detail/delete-element/aeafmlpmnmbckkaapajfhdmbbmdapngm |
विवरण | Adds option to context menu to quickly delete a page element |
फ़ाइल का आकार | 29.11 KB |
स्थापना संख्या | 53 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2018-05-14 |
प्रकाशन तिथि | 2018-05-14 |
रेटिंग | 3.33/5 कुल 3 रेटिंग्स |
डेवलपर | lifeinweeksapp |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Delete Element", "description": "Adds option to context menu to quickly delete a page element", "version": "1.0.0", "manifest_version": 2, "permissions": [ "contextMenus", "activeTab" ], "background": { "scripts": [ "script.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "128": "icon.png" }, "options_ui": { "page": "options.html", "chrome_style": true } } |