DOM Destroyer

Delete anything on a website with a click.

Cos'è DOM Destroyer?

DOM Destroyer è un'estensione di Chrome sviluppata da Phil Schleihauf, e la sua funzione principale è "Delete anything on a website with a click.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione DOM Destroyer

Scarica i file di estensione DOM Destroyer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome DOM Destroyer DOM Destroyer
ID cgkjfaoibdibeghgeplabcbineebklgf
URL Ufficiale https://chromewebstore.google.com/detail/dom-destroyer/cgkjfaoibdibeghgeplabcbineebklgf
Descrizione Delete anything on a website with a click.
Dimensione del File 12.62 KB
Conteggio Installazioni 2,836
Versione Corrente 0.3
Ultimo Aggiornamento 2021-03-29
Data di Pubblicazione 2014-02-25
Valutazione 3.76/5 Totale 17 Valutazioni
Sviluppatore Phil Schleihauf
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://github.com/uniphil/dom-destroyer
URL della Pagina di Aiuto http://github.com/uniphil/dom-destroyer/issues
Lingue Supportate 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"
}