Displayer None

Remove the highest Z-Index one at a time

Wat is Displayer None?

Displayer None is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Remove the highest Z-Index one at a time".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Displayer None

Download Displayer None-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Displayer None Displayer None
ID fognccpdledbhjeadojefhaejnkdclni
Officiële URL https://chromewebstore.google.com/detail/displayer-none/fognccpdledbhjeadojefhaejnkdclni
Beschrijving Remove the highest Z-Index one at a time
Bestandsgrootte 63.5 KB
Aantal Installaties 18
Huidige Versie 0.1.0
Laatst Bijgewerkt 2019-09-07
Publicatiedatum 2019-09-03
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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": [
                ""
            ]
        }
    ]
}