Displayer None

Remove the highest Z-Index one at a time

Cos'è Displayer None?

Displayer None è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Remove the highest Z-Index one at a time".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Displayer None

Scarica i file di estensione Displayer None 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

                        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                    

Informazioni di Base sull'Estensione

Nome Displayer None Displayer None
ID fognccpdledbhjeadojefhaejnkdclni
URL Ufficiale https://chromewebstore.google.com/detail/displayer-none/fognccpdledbhjeadojefhaejnkdclni
Descrizione Remove the highest Z-Index one at a time
Dimensione del File 63.5 KB
Conteggio Installazioni 18
Versione Corrente 0.1.0
Ultimo Aggiornamento 2019-09-07
Data di Pubblicazione 2019-09-03
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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": [
                ""
            ]
        }
    ]
}