Simple Remove Element

Adds a context menu to remove an element from a page

What is Simple Remove Element?

Simple Remove Element is a Chrome extension developed by elfakyn, and its main feature is "Adds a context menu to remove an element from a page".

Extension Screenshots

screenshot

Download Simple Remove Element Extension CRX File

Download Simple 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

                        Adds a right-click menu item to remove an element from a page. Right click on an item, select "Remove element", and the element is gone.

Extensions that can read data on all websites are scary. This extension is:

Open-source
Secure
Efficient
Auditable
As simple as can be
Designed with minimal permissions (still needs access to the active tab)

Submit an issue in the GitHub page if you encounter any issues: https://github.com/elfakyn/simple-remove-element                    

Extension Basic Information

Name Simple Remove Element Simple Remove Element
ID mlfckaclcmmggacnimimmeepailfhokj
Official URL https://chromewebstore.google.com/detail/simple-remove-element/mlfckaclcmmggacnimimmeepailfhokj
Description Adds a context menu to remove an element from a page
File Size 6.53 KB
Installation Count 21
Current Version 1.0.4
Last Updated 2019-11-08
Publish Date 2019-11-05
Developer elfakyn
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple Remove Element",
    "short_name": "Remove Element",
    "version": "1.0.4",
    "description": "Adds a context menu to remove an element from a page",
    "manifest_version": 2,
    "icons": {
        "48": "remove_48.png",
        "128": "remove_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "remove_element.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "content_security_policy": "script-src 'self'; object-src 'none'; default-src 'none'"
}