Remove Element

Remove an HTML element from the context menu (right-click).

Remove Element क्या है?

Remove Element atheimanksu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove an HTML element from the context menu (right-click)."।

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

screenshot
screenshot

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

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

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

                        Remove Element allows you to remove any HTML element by right clicking the element and selecting "Remove Element" from the Chrome context menu.

Extremely simple and efficient code is available at https://github.com/atheiman/remove-element                    

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

नाम Remove Element Remove Element
ID jmmocdecnafloeaphiidpofionaifhjo
आधिकारिक URL https://chromewebstore.google.com/detail/remove-element/jmmocdecnafloeaphiidpofionaifhjo
विवरण Remove an HTML element from the context menu (right-click).
फ़ाइल का आकार 178 KB
स्थापना संख्या 363
वर्तमान संस्करण 1.0
अंतिम अपडेट 2015-09-03
प्रकाशन तिथि 2015-09-02
रेटिंग 2.00/5 कुल 8 रेटिंग्स
डेवलपर atheimanksu
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Element",
    "description": "Remove an HTML element from the context menu (right-click).",
    "version": "1.0",
    "author": "Austin Heiman",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "icons": {
        "16": "images\/red-x-16.png",
        "48": "images\/red-x-48.png",
        "128": "images\/red-x-128.png"
    },
    "background": {
        "scripts": [
            "event.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}