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
官方URL 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": [
                ""
            ]
        }
    ]
}