Disable links.
Hold Ctrl+Alt to disable the links temporarily.
Vad är Disable links.?
Disable links. är en Chrome-tillägg utvecklad av alienav, och dess huvudfunktion är "Hold Ctrl+Alt to disable the links temporarily.".
Tilläggsskärmbilder
Ladda ner Disable links.-förlängningens CRX-fil
Ladda ner Disable links.-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Disable links. |
ID | kgghjfabpkpodeancnenkndklnomjpbf |
Officiell webbadress | https://chromewebstore.google.com/detail/disable-links/kgghjfabpkpodeancnenkndklnomjpbf |
Beskrivning | Hold Ctrl+Alt to disable the links temporarily. |
Filstorlek | 9.21 KB |
Antal Installationer | 1,254 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2022-06-18 |
Publiceringsdatum | 2014-07-14 |
Betyg | 3.36/5 Totalt 33 Betyg |
Utvecklare | alienav |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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:\/\/*\/*" ] } |