ctrl-access
Navigate to links with a trigger key (by default the ctrl-key).
Wat is ctrl-access?
ctrl-access is een Chrome-extensie ontwikkeld door Florian Loitsch, en de belangrijkste functie is "Navigate to links with a trigger key (by default the ctrl-key).".
Extensie Screenshots
Download het CRX-bestand van de extensie ctrl-access
Download ctrl-access-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | glmoehiilkjpgcimmfodllkkhpeikomb |
| Officiële URL | https://chromewebstore.google.com/detail/ctrl-access/glmoehiilkjpgcimmfodllkkhpeikomb |
| Beschrijving | Navigate to links with a trigger key (by default the ctrl-key). |
| Bestandsgrootte | 725 KB |
| Aantal Installaties | 68 |
| Huidige Versie | 0.7.0 |
| Laatst Bijgewerkt | 2020-08-16 |
| Publicatiedatum | 2019-12-16 |
| Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | Florian Loitsch |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/floitsch/ctrl-access |
| Ondersteunde Talen | 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"
} | |