Remove Element

This extension will remove any element

Remove Element क्या है?

Remove Element mnetzer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will remove any element"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Have you ever wanted to blast any element on the page? This will do it. 100% Guaranteed to remove any element with a simple right click -> Remove Element. This works on iframes as well which basically means you can even get rid of elements inside video frames such as youtube vimeo and twitch! 

Also, this is open-source! So if you want to see how this was created check this out:
https://github.com/moishinetzer/remove-element                    

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

नाम Remove Element Remove Element
ID nmndcjhenmoghainokenbpgakopbplpk
आधिकारिक URL https://chromewebstore.google.com/detail/remove-element/nmndcjhenmoghainokenbpgakopbplpk
विवरण This extension will remove any element
फ़ाइल का आकार 150 KB
स्थापना संख्या 81
वर्तमान संस्करण 1.0
अंतिम अपडेट 2021-02-02
प्रकाशन तिथि 2021-02-02
डेवलपर mnetzer
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/moishinetzer/remove-element
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Element",
    "description": "This extension will remove any element",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "script.js",
        "background.js"
    ],
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "script.js"
            ],
            "match_about_blank": true,
            "run_at": "document_idle"
        }
    ]
}