Displayer None

Remove the highest Z-Index one at a time

¿Qué es Displayer None?

Displayer None es una extensión de Chrome desarrollada por Unknown, y su función principal es "Remove the highest Z-Index one at a time".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Displayer None

Descarga archivos de extensión Displayer None 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

                        Remove blocking layers / paywall prompts by changing the CSS of an element to hidden with a click.
Each time you click the icon the element with the highest Z-Index will be removed from the page                    

Información Básica de la Extensión

Nombre Displayer None Displayer None
ID fognccpdledbhjeadojefhaejnkdclni
URL Oficial https://chromewebstore.google.com/detail/displayer-none/fognccpdledbhjeadojefhaejnkdclni
Descripción Remove the highest Z-Index one at a time
Tamaño del Archivo 63.5 KB
Cantidad de Instalaciones 18
Versión Actual 0.1.0
Última Actualización 2019-09-07
Fecha de Publicación 2019-09-03
Desarrollador Unknown
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Displayer None",
    "version": "0.1.0",
    "description": "Remove the highest Z-Index one at a time",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "logo.png"
    },
    "icons": {
        "128": "logo.png",
        "16": "logo.png",
        "48": "logo.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "css": [
                "style.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}