ctrl-access
Navigate to links with a trigger key (by default the ctrl-key).
What is ctrl-access?
ctrl-access is a Chrome extension developed by Florian Loitsch, and its main feature is "Navigate to links with a trigger key (by default the ctrl-key).".
Extension Screenshots
Download ctrl-access Extension CRX File
Download ctrl-access extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | ctrl-access |
ID | glmoehiilkjpgcimmfodllkkhpeikomb |
Official URL | https://chromewebstore.google.com/detail/ctrl-access/glmoehiilkjpgcimmfodllkkhpeikomb |
Description | Navigate to links with a trigger key (by default the ctrl-key). |
File Size | 725 KB |
Installation Count | 68 |
Current Version | 0.7.0 |
Last Updated | 2020-08-16 |
Publish Date | 2019-12-16 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Florian Loitsch |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/floitsch/ctrl-access |
Supported Languages | 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" } |