ctrl-access
Navigate to links with a trigger key (by default the ctrl-key).
Co je ctrl-access?
ctrl-access je rozšíření Chrome vyvinuté Florian Loitsch, a jeho hlavní funkcí je „Navigate to links with a trigger key (by default the ctrl-key).“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření ctrl-access
Stáhněte si soubory rozšíření ctrl-access ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
This chrome extension allows to navigate to links with a trigger key (by default the ctrl-key). In many cases this removes the need for a mouse. This extension is a copy of Konqueror's access-key functionality.
Základní Informace o Rozšíření
Název | ctrl-access |
ID | glmoehiilkjpgcimmfodllkkhpeikomb |
Oficiální URL | https://chromewebstore.google.com/detail/ctrl-access/glmoehiilkjpgcimmfodllkkhpeikomb |
Popis | Navigate to links with a trigger key (by default the ctrl-key). |
Velikost souboru | 725 KB |
Počet instalací | 68 |
Aktuální Verze | 0.7.0 |
Poslední Aktualizace | 2020-08-16 |
Datum Vydání | 2019-12-16 |
Hodnocení | 5.00/5 Celkem 4 Hodnocení |
Vývojář | Florian Loitsch |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/floitsch/ctrl-access |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ctrl-access", "version": "0.7.0", "description": "Navigate to links with a trigger key (by default the ctrl-key).", "icons": { "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "tabs" ], "background": { "scripts": [ "bg.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery-1.7.2.min.js", "ctrl-access.js" ], "css": [ "ctrl-access.css" ], "run_at": "document_end", "all_frames": true } ], "options_page": "options.html" } |