Disable links.
Hold Ctrl+Alt to disable the links temporarily.
Cos'è Disable links.?
Disable links. è un'estensione di Chrome sviluppata da alienav, e la sua funzione principale è "Hold Ctrl+Alt to disable the links temporarily.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Disable links.
Scarica i file di estensione Disable links. in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Disable links. |
ID | kgghjfabpkpodeancnenkndklnomjpbf |
URL Ufficiale | https://chromewebstore.google.com/detail/disable-links/kgghjfabpkpodeancnenkndklnomjpbf |
Descrizione | Hold Ctrl+Alt to disable the links temporarily. |
Dimensione del File | 9.21 KB |
Conteggio Installazioni | 1,254 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2022-06-18 |
Data di Pubblicazione | 2014-07-14 |
Valutazione | 3.36/5 Totale 33 Valutazioni |
Sviluppatore | alienav |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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:\/\/*\/*" ] } |