Disable links.
Hold Ctrl+Alt to disable the links temporarily.
¿Qué es Disable links.?
Disable links. es una extensión de Chrome desarrollada por alienav, y su función principal es "Hold Ctrl+Alt to disable the links temporarily.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Disable links.
Descarga archivos de extensión Disable links. en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Disable links. |
ID | kgghjfabpkpodeancnenkndklnomjpbf |
URL Oficial | https://chromewebstore.google.com/detail/disable-links/kgghjfabpkpodeancnenkndklnomjpbf |
Descripción | Hold Ctrl+Alt to disable the links temporarily. |
Tamaño del Archivo | 9.21 KB |
Cantidad de Instalaciones | 1,254 |
Versión Actual | 1.0 |
Última Actualización | 2022-06-18 |
Fecha de Publicación | 2014-07-14 |
Calificación | 3.36/5 Total de 33 Calificaciones |
Desarrollador | alienav |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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:\/\/*\/*" ] } |