Displayer None

Remove the highest Z-Index one at a time

Vad är Displayer None?

Displayer None är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Remove the highest Z-Index one at a time".

Tilläggsskärmbilder

screenshot

Ladda ner Displayer None-förlängningens CRX-fil

Ladda ner Displayer None-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Displayer None Displayer None
ID fognccpdledbhjeadojefhaejnkdclni
Officiell webbadress https://chromewebstore.google.com/detail/displayer-none/fognccpdledbhjeadojefhaejnkdclni
Beskrivning Remove the highest Z-Index one at a time
Filstorlek 63.5 KB
Antal Installationer 18
Aktuell Version 0.1.0
Senast Uppdaterad 2019-09-07
Publiceringsdatum 2019-09-03
Utvecklare Unknown
Betalningssätt free
Stödda Språk 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": [
                ""
            ]
        }
    ]
}