DOM Destroyer

Delete anything on a website with a click.

What is DOM Destroyer?

DOM Destroyer is a Chrome extension developed by Phil Schleihauf, and its main feature is "Delete anything on a website with a click.".

Extension Screenshots

screenshot

Download DOM Destroyer Extension CRX File

Download DOM Destroyer 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

                        DOM Destroyer empowers you to remove anything that annoys you from a web page by just clicking on it. Get rid of newsletter popups, content-hiding overlays, and all kinds of other noisy clutter!

Note that this extension only temporarily hides elements from your view -- to get them back, just refresh the page.                    

Extension Basic Information

Name DOM Destroyer DOM Destroyer
ID cgkjfaoibdibeghgeplabcbineebklgf
Official URL https://chromewebstore.google.com/detail/dom-destroyer/cgkjfaoibdibeghgeplabcbineebklgf
Description Delete anything on a website with a click.
File Size 12.62 KB
Installation Count 2,836
Current Version 0.3
Last Updated 2021-03-29
Publish Date 2014-02-25
Rating 3.76/5 Total 17 Ratings
Developer Phil Schleihauf
Email [email protected]
Payment Type free
Extension Website http://github.com/uniphil/dom-destroyer
Help Page URL http://github.com/uniphil/dom-destroyer/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DOM Destroyer",
    "description": "Delete anything on a website with a click.",
    "version": "0.3",
    "browser_action": {
        "default_title": "Destroy DOM",
        "default_icon": "destroy_128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "toggle-armed": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            },
            "description": "Toggle DOM destruction mode"
        }
    },
    "homepage_url": "http:\/\/github.com\/uniphil\/dom-destroyer"
}