Kill Button

This button removes elements on web pages. Click once to remove elements, click another time or press escape to continue surfing.

¿Qué es Kill Button?

Kill Button es una extensión de Chrome desarrollada por Unknown, y su función principal es "This button removes elements on web pages. Click once to remove elements, click another time or press escape to continue surfing.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Kill Button

Descarga archivos de extensión Kill Button 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

                        This button removes elements on web pages. Just click the kill button (trash can) so it turns red. You can now hover over website elements, which will become red on hovering them. Click on a website element to remove it. If you're happy with the result, press the Escape key or press the trash can again, so it becomes gray.

You might use it for developing or to remove extremely annoying flickering ads that can't be removed with ad blockers or on pages that permit the use of ad blockers. If you deleted too much, please refresh the page.                    

Información Básica de la Extensión

Nombre Kill Button Kill Button
ID meflldekhdenalgeanoajgkhlmjmkjfb
URL Oficial https://chromewebstore.google.com/detail/kill-button/meflldekhdenalgeanoajgkhlmjmkjfb
Descripción This button removes elements on web pages. Click once to remove elements, click another time or press escape to continue surfing.
Tamaño del Archivo 6.4 KB
Cantidad de Instalaciones 159
Versión Actual 1.0
Última Actualización 2019-05-21
Fecha de Publicación 2019-05-16
Calificación 3.00/5 Total de 1 Calificaciones
Desarrollador Unknown
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Kill Button",
    "description": "This button removes elements on web pages. Click once to remove elements, click another time or press escape to continue surfing.",
    "version": "1.0",
    "author": "Matthias Luh",
    "icons": {
        "48": "icon_48.png"
    },
    "browser_action": {
        "default_icon": {
            "48": "icon_48.png"
        },
        "default_title": "Kill website elements"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ]
}