Displayer None

Remove the highest Z-Index one at a time

Co to jest Displayer None?

Displayer None to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Remove the highest Z-Index one at a time”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Displayer None

Pobierz pliki rozszerzeń Displayer None w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Displayer None Displayer None
ID fognccpdledbhjeadojefhaejnkdclni
Oficjalny URL https://chromewebstore.google.com/detail/displayer-none/fognccpdledbhjeadojefhaejnkdclni
Opis Remove the highest Z-Index one at a time
Rozmiar pliku 63.5 KB
Liczba instalacji 18
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2019-09-07
Data Publikacji 2019-09-03
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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": [
                ""
            ]
        }
    ]
}