Displayer None

Remove the highest Z-Index one at a time

什麼是Displayer None?

Displayer None是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Remove the highest Z-Index one at a time”。

擴展截圖

screenshot

下載Displayer None擴展crx文件

下載Displayer None擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Displayer None Displayer None
ID fognccpdledbhjeadojefhaejnkdclni
官方網址 https://chromewebstore.google.com/detail/displayer-none/fognccpdledbhjeadojefhaejnkdclni
簡介 Remove the highest Z-Index one at a time
檔案大小 63.5 KB
安裝次數 18
目前版本 0.1.0
更新時間 2019-09-07
上架時間 2019-09-03
開發者 Unknown
付費類型 free
支援的語言 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": [
                ""
            ]
        }
    ]
}