ctrl-access
Navigate to links with a trigger key (by default the ctrl-key).
Qu'est-ce que ctrl-access ?
ctrl-access est une extension Chrome développée par Florian Loitsch, et sa fonction principale est "Navigate to links with a trigger key (by default the ctrl-key).".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ctrl-access
Téléchargez les fichiers d'extension ctrl-access au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | ctrl-access |
ID | glmoehiilkjpgcimmfodllkkhpeikomb |
URL Officiel | https://chromewebstore.google.com/detail/ctrl-access/glmoehiilkjpgcimmfodllkkhpeikomb |
Description | Navigate to links with a trigger key (by default the ctrl-key). |
Taille du Fichier | 725 KB |
Nombre d'Installations | 68 |
Version Actuelle | 0.7.0 |
Dernière Mise à Jour | 2020-08-16 |
Date de Publication | 2019-12-16 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | Florian Loitsch |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/floitsch/ctrl-access |
Langues Prises en Charge | 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" } |