Links Disabler
A lightweight extension which lets you disable all links on a webpage.
Links Disabler là gì?
Links Disabler là một tiện ích mở rộng Chrome được phát triển bởi Fabio Sangregorio, và tính năng chính của nó là "A lightweight extension which lets you disable all links on a webpage.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Links Disabler
Tải xuống các tệp mở rộng Links Disabler 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
A lightweight extension which lets you disable all links on a webpage. Usage • • • To toggle between disabling and enabling all links, simply click the extension icon (located in the upper right corner of the browser) or use the keyboard shortcut **Alt + Shift + D**. Features • • • The extension curretly comes with two main features, which can be activated through the extension's options page (see below for more details). • Save toggle status globally and on page reload: if this option is checked, when you hit "disable links" the change will be reflected on all tabs, and links will stay disabled even after page reload. • Only disable links that follow a pattern: if this option is enabled, when you hit "disable links" only links in the disable list will be disabled. All other links will stay enabled. This option is automatically enabled if the disable list is not empty. The disable list can be configured with a pattern per line, and accepts wildcards with the * sign. Configuration • • • • Shortcuts: you can configure the shortcut in the Chrome shortcuts page at chrome://extensions/shortcuts • Options: you can configure the extension options through the extension's options page Bugs and feature requests • • • For any issues, bugs and feature requests feel free to open an issue on Github at https://github.com/fabiosangregorio/links-disabler/issues
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Links Disabler |
ID | dpgcehldjbcfejamdkfaeoamlpjlhbig |
URL Chính Thức | https://chromewebstore.google.com/detail/links-disabler/dpgcehldjbcfejamdkfaeoamlpjlhbig |
Mô tả | A lightweight extension which lets you disable all links on a webpage. |
Kích Thước Tệp | 13.24 KB |
Số Lần Cài Đặt | 1,103 |
Phiên Bản Hiện Tại | 1.3.1 |
Cập Nhật Lần Cuối | 2020-12-02 |
Ngày Phát Hành | 2018-11-01 |
Đánh Giá | 4.20/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | Fabio Sangregorio |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/fabiosangregorio/links-disabler |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.3.1", "name": "Links Disabler", "description": "A lightweight extension which lets you disable all links on a webpage.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "activeTab", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "options_ui": { "page": "options\/options.html", "open_in_tab": false }, "browser_action": [], "commands": { "toggle-links": { "suggested_key": { "default": "Alt+Shift+D" }, "description": "Disable\/Enable links" } }, "manifest_version": 2 } |