Disable links.
Hold Ctrl+Alt to disable the links temporarily.
What is Disable links.?
Disable links. is a Chrome extension developed by alienav, and its main feature is "Hold Ctrl+Alt to disable the links temporarily.".
Extension Screenshots
Download Disable links. Extension CRX File
Download Disable links. extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension is deprecated - Chrome has a built-in feature for this, just holding Alt while selecting prevents the link from being clicked. You can safely remove it. Previous description: This extension disables links when you hold Ctrl+Alt. This allows to select text from the middle of the link, and generally eases selection, eliminating the risk to click the link while copying it. “Broken link” icon by Arthur Abt, from thenounproject.com collection.
Extension Basic Information
Name | Disable links. |
ID | kgghjfabpkpodeancnenkndklnomjpbf |
Official URL | https://chromewebstore.google.com/detail/disable-links/kgghjfabpkpodeancnenkndklnomjpbf |
Description | Hold Ctrl+Alt to disable the links temporarily. |
File Size | 9.21 KB |
Installation Count | 1,254 |
Current Version | 1.0 |
Last Updated | 2022-06-18 |
Publish Date | 2014-07-14 |
Rating | 3.36/5 Total 33 Ratings |
Developer | alienav |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Disable links.", "description": "Hold Ctrl+Alt to disable the links temporarily.", "version": "1.0", "manifest_version": 2, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "keyboardhook.js" ] } ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |