ctrl-access
Navigate to links with a trigger key (by default the ctrl-key).
Vad är ctrl-access?
ctrl-access är en Chrome-tillägg utvecklad av Florian Loitsch, och dess huvudfunktion är "Navigate to links with a trigger key (by default the ctrl-key).".
Tilläggsskärmbilder
Ladda ner ctrl-access-förlängningens CRX-fil
Ladda ner ctrl-access-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 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.
Grundläggande Information om Tillägg
Namn | ctrl-access |
ID | glmoehiilkjpgcimmfodllkkhpeikomb |
Officiell webbadress | https://chromewebstore.google.com/detail/ctrl-access/glmoehiilkjpgcimmfodllkkhpeikomb |
Beskrivning | Navigate to links with a trigger key (by default the ctrl-key). |
Filstorlek | 725 KB |
Antal Installationer | 68 |
Aktuell Version | 0.7.0 |
Senast Uppdaterad | 2020-08-16 |
Publiceringsdatum | 2019-12-16 |
Betyg | 5.00/5 Totalt 4 Betyg |
Utvecklare | Florian Loitsch |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/floitsch/ctrl-access |
Stödda Språk | 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" } |