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.
拡張機能の基本情報
名前 | |
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 |
Eメール | [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 } |