Simple Remove Element

Adds a context menu to remove an element from a page

Simple Remove Element क्या है?

Simple Remove Element elfakyn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a context menu to remove an element from a page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Simple Remove Element एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Adds a right-click menu item to remove an element from a page. Right click on an item, select "Remove element", and the element is gone.

Extensions that can read data on all websites are scary. This extension is:

Open-source
Secure
Efficient
Auditable
As simple as can be
Designed with minimal permissions (still needs access to the active tab)

Submit an issue in the GitHub page if you encounter any issues: https://github.com/elfakyn/simple-remove-element                    

एक्सटेंशन की मूल जानकारी

नाम Simple Remove Element Simple Remove Element
ID mlfckaclcmmggacnimimmeepailfhokj
आधिकारिक URL https://chromewebstore.google.com/detail/simple-remove-element/mlfckaclcmmggacnimimmeepailfhokj
विवरण Adds a context menu to remove an element from a page
फ़ाइल का आकार 6.53 KB
स्थापना संख्या 21
वर्तमान संस्करण 1.0.4
अंतिम अपडेट 2019-11-08
प्रकाशन तिथि 2019-11-05
डेवलपर elfakyn
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple Remove Element",
    "short_name": "Remove Element",
    "version": "1.0.4",
    "description": "Adds a context menu to remove an element from a page",
    "manifest_version": 2,
    "icons": {
        "48": "remove_48.png",
        "128": "remove_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "remove_element.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "content_security_policy": "script-src 'self'; object-src 'none'; default-src 'none'"
}