Displayer None

Remove the highest Z-Index one at a time

Apa itu Displayer None?

Displayer None adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Remove the highest Z-Index one at a time".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Displayer None

Unduh file ekstensi Displayer None dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Displayer None Displayer None
ID fognccpdledbhjeadojefhaejnkdclni
URL Resmi https://chromewebstore.google.com/detail/displayer-none/fognccpdledbhjeadojefhaejnkdclni
Deskripsi Remove the highest Z-Index one at a time
Ukuran File 63.5 KB
Jumlah Instalasi 18
Versi Saat Ini 0.1.0
Terakhir Diperbarui 2019-09-07
Tanggal Publikasi 2019-09-03
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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": [
                ""
            ]
        }
    ]
}