Displayer None

Remove the highest Z-Index one at a time

Co je Displayer None?

Displayer None je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Remove the highest Z-Index one at a time“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Displayer None

Stáhněte si soubory rozšíření Displayer None ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Displayer None Displayer None
ID fognccpdledbhjeadojefhaejnkdclni
Oficiální URL https://chromewebstore.google.com/detail/displayer-none/fognccpdledbhjeadojefhaejnkdclni
Popis Remove the highest Z-Index one at a time
Velikost souboru 63.5 KB
Počet instalací 18
Aktuální Verze 0.1.0
Poslední Aktualizace 2019-09-07
Datum Vydání 2019-09-03
Vývojář Unknown
Typ Platby free
Podporované Jazyky 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": [
                ""
            ]
        }
    ]
}