Displayer None

Remove the highest Z-Index one at a time

O que é Displayer None?

Displayer None é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Remove the highest Z-Index one at a time".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Displayer None

Baixe arquivos de extensão Displayer None no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Displayer None Displayer None
ID fognccpdledbhjeadojefhaejnkdclni
URL Oficial https://chromewebstore.google.com/detail/displayer-none/fognccpdledbhjeadojefhaejnkdclni
Descrição Remove the highest Z-Index one at a time
Tamanho do Arquivo 63.5 KB
Contagem de Instalações 18
Versão Atual 0.1.0
Última Atualização 2019-09-07
Data de Publicação 2019-09-03
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados 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": [
                ""
            ]
        }
    ]
}