Click-to-hide
Hide elements on page by clicking on them.
Click-to-hide là gì?
Click-to-hide là một tiện ích mở rộng Chrome được phát triển bởi http://mattconn.io, và tính năng chính của nó là "Hide elements on page by clicking on them.".
Tải xuống tệp CRX của tiện ích mở rộng Click-to-hide
Tải xuống các tệp mở rộng Click-to-hide dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
# 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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | lcdicpnpgjfaodmccefekkfecadllbjg |
URL Chính Thức | https://chrome.google.com/webstore/detail/click-to-hide/lcdicpnpgjfaodmccefekkfecadllbjg |
Mô tả | Hide elements on page by clicking on them. |
Kích Thước Tệp | 5.16 KB |
Số Lần Cài Đặt | 127 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2018-02-13 |
Ngày Phát Hành | 2018-02-13 |
Đánh Giá | 3.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | http://mattconn.io |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/mattConn/chrome-click-to-hide |
Ngôn Ngữ Được Hỗ Trợ | 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 } |