Remove Element

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

What is Remove Element?

Remove Element is a Chrome extension developed by atheimanksu, and its main feature is "Remove an HTML element from the context menu (right-click).".

Extension Screenshots

screenshot
screenshot

Download Remove Element Extension CRX File

Download Remove Element extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Remove Element Remove Element
ID jmmocdecnafloeaphiidpofionaifhjo
Official URL https://chromewebstore.google.com/detail/remove-element/jmmocdecnafloeaphiidpofionaifhjo
Description Remove an HTML element from the context menu (right-click).
File Size 178 KB
Installation Count 363
Current Version 1.0
Last Updated 2015-09-03
Publish Date 2015-09-02
Rating 2.00/5 Total 8 Ratings
Developer atheimanksu
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}