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
官方網址 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
}