ctrl-access

Navigate to links with a trigger key (by default the ctrl-key).

Cos'è ctrl-access?

ctrl-access è un'estensione di Chrome sviluppata da Florian Loitsch, e la sua funzione principale è "Navigate to links with a trigger key (by default the ctrl-key).".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione ctrl-access

Scarica i file di estensione ctrl-access in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome ctrl-access ctrl-access
ID glmoehiilkjpgcimmfodllkkhpeikomb
URL Ufficiale https://chromewebstore.google.com/detail/ctrl-access/glmoehiilkjpgcimmfodllkkhpeikomb
Descrizione Navigate to links with a trigger key (by default the ctrl-key).
Dimensione del File 725 KB
Conteggio Installazioni 68
Versione Corrente 0.7.0
Ultimo Aggiornamento 2020-08-16
Data di Pubblicazione 2019-12-16
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Florian Loitsch
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/floitsch/ctrl-access
Lingue Supportate 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"
}