Remove Element

This extension will remove any element

What is Remove Element?

Remove Element is a Chrome extension developed by mnetzer, and its main feature is "This extension will remove any element".

Extension Screenshots

screenshot
screenshot
screenshot
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

                        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                    

Extension Basic Information

Name Remove Element Remove Element
ID nmndcjhenmoghainokenbpgakopbplpk
Official URL https://chromewebstore.google.com/detail/remove-element/nmndcjhenmoghainokenbpgakopbplpk
Description This extension will remove any element
File Size 150 KB
Installation Count 81
Current Version 1.0
Last Updated 2021-02-02
Publish Date 2021-02-02
Developer mnetzer
Email [email protected]
Payment Type free
Extension Website https://github.com/moishinetzer/remove-element
Supported Languages 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"
        }
    ]
}