Links Disabler
A lightweight extension which lets you disable all links on a webpage.
Links Disabler란 무엇입니까?
Links Disabler은(는) Fabio Sangregorio에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A lightweight extension which lets you disable all links on a webpage."입니다.
확장 프로그램 스크린샷
Links Disabler 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | Links Disabler |
ID | dpgcehldjbcfejamdkfaeoamlpjlhbig |
공식 URL | https://chromewebstore.google.com/detail/links-disabler/dpgcehldjbcfejamdkfaeoamlpjlhbig |
설명 | A lightweight extension which lets you disable all links on a webpage. |
파일 크기 | 13.24 KB |
설치 횟수 | 1,103 |
현재 버전 | 1.3.1 |
최근 업데이트 | 2020-12-02 |
출시 날짜 | 2018-11-01 |
평점 | 4.20/5 총 10 개의 평점 |
개발자 | Fabio Sangregorio |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/fabiosangregorio/links-disabler |
지원되는 언어 | 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 } |