Remove Element

Creates a contextual menu item to remove an element from the DOM

What is Remove Element?

Remove Element is a Chrome extension developed by https://weilstreet.com, and its main feature is "Creates a contextual menu item to remove an element from the DOM".

Extension Screenshots

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

                        Right-click anything on the page and remove it. Useful if an ad is in the way of you reading an article. If you accidentally remove too much, just refresh the page - removing items is temporary.

After installation you must reload any open pages for the extension to work.                    

Extension Basic Information

Name Remove Element Remove Element
ID lnfececmldedlanmhbeljgdaofncfeho
Official URL https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho
Description Creates a contextual menu item to remove an element from the DOM
File Size 6.35 KB
Installation Count 2,523
Current Version 1.0.2
Last Updated 2018-09-05
Publish Date 2018-09-04
Rating 3.94/5 Total 32 Ratings
Developer https://weilstreet.com
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remove Element",
    "version": "1.0.2",
    "description": "Creates a contextual menu item to remove an element from the DOM",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "remove.js"
            ]
        }
    ]
}