Delete Element

Adds option to context menu to quickly delete a page element

What is Delete Element?

Delete Element is a Chrome extension developed by lifeinweeksapp, and its main feature is "Adds option to context menu to quickly delete a page element".

Download Delete Element Extension CRX File

Download Delete 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 option to context menu to quickly delete a page element. 

Does NOT permanently delete the item. Use an ad-blocker for that.                    

Extension Basic Information

Name Delete Element Delete Element
ID aeafmlpmnmbckkaapajfhdmbbmdapngm
Official URL https://chrome.google.com/webstore/detail/delete-element/aeafmlpmnmbckkaapajfhdmbbmdapngm
Description Adds option to context menu to quickly delete a page element
File Size 29.11 KB
Installation Count 53
Current Version 1.0.0
Last Updated 2018-05-14
Publish Date 2018-05-14
Rating 3.33/5 Total 3 Ratings
Developer lifeinweeksapp
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Delete Element",
    "description": "Adds option to context menu to quickly delete a page element",
    "version": "1.0.0",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}