Disable links.
Hold Ctrl+Alt to disable the links temporarily.
Qu'est-ce que Disable links. ?
Disable links. est une extension Chrome développée par alienav, et sa fonction principale est "Hold Ctrl+Alt to disable the links temporarily.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Disable links.
Téléchargez les fichiers d'extension Disable links. au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Disable links. |
ID | kgghjfabpkpodeancnenkndklnomjpbf |
URL Officiel | https://chromewebstore.google.com/detail/disable-links/kgghjfabpkpodeancnenkndklnomjpbf |
Description | Hold Ctrl+Alt to disable the links temporarily. |
Taille du Fichier | 9.21 KB |
Nombre d'Installations | 1,254 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2022-06-18 |
Date de Publication | 2014-07-14 |
Évaluation | 3.36/5 Total 33 Évaluations |
Développeur | alienav |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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:\/\/*\/*" ] } |