Disable links.
Hold Ctrl+Alt to disable the links temporarily.
Co to jest Disable links.?
Disable links. to rozszerzenie Chrome opracowane przez alienav, a jego główną funkcją jest „Hold Ctrl+Alt to disable the links temporarily.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Disable links.
Pobierz pliki rozszerzeń Disable links. w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Disable links. |
ID | kgghjfabpkpodeancnenkndklnomjpbf |
Oficjalny URL | https://chromewebstore.google.com/detail/disable-links/kgghjfabpkpodeancnenkndklnomjpbf |
Opis | Hold Ctrl+Alt to disable the links temporarily. |
Rozmiar pliku | 9.21 KB |
Liczba instalacji | 1,254 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2022-06-18 |
Data Publikacji | 2014-07-14 |
Ocena | 3.36/5 Łącznie 33 Oceny |
Deweloper | alienav |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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:\/\/*\/*" ] } |