ctrl-access
Navigate to links with a trigger key (by default the ctrl-key).
Co to jest ctrl-access?
ctrl-access to rozszerzenie Chrome opracowane przez Florian Loitsch, a jego główną funkcją jest „Navigate to links with a trigger key (by default the ctrl-key).”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ctrl-access
Pobierz pliki rozszerzeń ctrl-access w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | glmoehiilkjpgcimmfodllkkhpeikomb |
| Oficjalny URL | https://chromewebstore.google.com/detail/ctrl-access/glmoehiilkjpgcimmfodllkkhpeikomb |
| Opis | Navigate to links with a trigger key (by default the ctrl-key). |
| Rozmiar pliku | 725 KB |
| Liczba instalacji | 68 |
| Aktualna Wersja | 0.7.0 |
| Ostatnia Aktualizacja | 2020-08-16 |
| Data Publikacji | 2019-12-16 |
| Ocena | 5.00/5 Łącznie 4 Oceny |
| Deweloper | Florian Loitsch |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/floitsch/ctrl-access |
| Obsługiwane Języki | 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"
} | |