Disable links.
Hold Ctrl+Alt to disable the links temporarily.
Was ist Disable links.?
Disable links. ist eine Chrome-Erweiterung, die von alienav entwickelt wurde, und ihr Hauptmerkmal ist "Hold Ctrl+Alt to disable the links temporarily.".
Erweiterungsscreenshots
Disable links.-Erweiterungs-CRX-Datei herunterladen
Laden Sie Disable links.-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Disable links. |
ID | kgghjfabpkpodeancnenkndklnomjpbf |
Offizielle URL | https://chromewebstore.google.com/detail/disable-links/kgghjfabpkpodeancnenkndklnomjpbf |
Beschreibung | Hold Ctrl+Alt to disable the links temporarily. |
Dateigröße | 9.21 KB |
Installationsanzahl | 1,254 |
Aktuelle Version | 1.0 |
Letztes Update | 2022-06-18 |
Veröffentlichungsdatum | 2014-07-14 |
Bewertung | 3.36/5 Insgesamt 33 Bewertungen |
Entwickler | alienav |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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:\/\/*\/*" ] } |