Click-to-hide

Hide elements on page by clicking on them.

什么是Click-to-hide?

Click-to-hide是由http://mattconn.io开发的Chrome扩展程序,该扩展的主要功能是“Hide elements on page by clicking on them.”。

下载Click-to-hide扩展crx文件

下载Click-to-hide扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        # Click-to-hide
Chrome extension to delete element on page by clicking on it. Useful for ads and other page blocking elements.

## To Use:
Click on the Click-to-hide icon to enable the extension. You will know that the extension is enabled when you see your cursor appear as a crosshair. The script will then be enabled for one click at a time.

Cick on any element on the page to effectively remove or hide it. To remove another element on the page, click on the extension icon again to re-enable, and repeat this process for any remaining elements on the page that you wish to remove.                    

扩展基本信息

名称 Click-to-hide Click-to-hide
ID lcdicpnpgjfaodmccefekkfecadllbjg
官方URL https://chrome.google.com/webstore/detail/click-to-hide/lcdicpnpgjfaodmccefekkfecadllbjg
简介 Hide elements on page by clicking on them.
文件大小 5.16 KB
安装次数 127
当前版本 1.0.1
更新时间 2018-02-13
上架时间 2018-02-13
评分 3.00/5 共2次评分
开发者 http://mattconn.io
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/mattConn/chrome-click-to-hide
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Click-to-hide",
    "description": "Hide elements on page by clicking on them.",
    "version": "1.0.1",
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Click-to-hide"
    },
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2
}