DOM Destroyer

Delete anything on a website with a click.

¿Qué es DOM Destroyer?

DOM Destroyer es una extensión de Chrome desarrollada por Phil Schleihauf, y su función principal es "Delete anything on a website with a click.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión DOM Destroyer

Descarga archivos de extensión DOM Destroyer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre DOM Destroyer DOM Destroyer
ID cgkjfaoibdibeghgeplabcbineebklgf
URL Oficial https://chromewebstore.google.com/detail/dom-destroyer/cgkjfaoibdibeghgeplabcbineebklgf
Descripción Delete anything on a website with a click.
Tamaño del Archivo 12.62 KB
Cantidad de Instalaciones 2,836
Versión Actual 0.3
Última Actualización 2021-03-29
Fecha de Publicación 2014-02-25
Calificación 3.76/5 Total de 17 Calificaciones
Desarrollador Phil Schleihauf
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://github.com/uniphil/dom-destroyer
URL de la Página de Ayuda http://github.com/uniphil/dom-destroyer/issues
Idiomas Soportados 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"
}