Remove Element

Creates a contextual menu item to remove an element from the DOM

¿Qué es Remove Element?

Remove Element es una extensión de Chrome desarrollada por https://weilstreet.com, y su función principal es "Creates a contextual menu item to remove an element from the DOM".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Remove Element

Descarga archivos de extensión Remove Element 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

                        Right-click anything on the page and remove it. Useful if an ad is in the way of you reading an article. If you accidentally remove too much, just refresh the page - removing items is temporary.

After installation you must reload any open pages for the extension to work.                    

Información Básica de la Extensión

Nombre Remove Element Remove Element
ID lnfececmldedlanmhbeljgdaofncfeho
URL Oficial https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho
Descripción Creates a contextual menu item to remove an element from the DOM
Tamaño del Archivo 6.35 KB
Cantidad de Instalaciones 2,523
Versión Actual 1.0.2
Última Actualización 2018-09-05
Fecha de Publicación 2018-09-04
Calificación 3.94/5 Total de 32 Calificaciones
Desarrollador https://weilstreet.com
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remove Element",
    "version": "1.0.2",
    "description": "Creates a contextual menu item to remove an element from the DOM",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "remove.js"
            ]
        }
    ]
}