ctrl-access

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

Was ist ctrl-access?

ctrl-access ist eine Chrome-Erweiterung, die von Florian Loitsch entwickelt wurde, und ihr Hauptmerkmal ist "Navigate to links with a trigger key (by default the ctrl-key).".

Erweiterungsscreenshots

screenshot
screenshot

ctrl-access-Erweiterungs-CRX-Datei herunterladen

Laden Sie ctrl-access-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name ctrl-access ctrl-access
ID glmoehiilkjpgcimmfodllkkhpeikomb
Offizielle URL https://chromewebstore.google.com/detail/ctrl-access/glmoehiilkjpgcimmfodllkkhpeikomb
Beschreibung Navigate to links with a trigger key (by default the ctrl-key).
Dateigröße 725 KB
Installationsanzahl 68
Aktuelle Version 0.7.0
Letztes Update 2020-08-16
Veröffentlichungsdatum 2019-12-16
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler Florian Loitsch
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/floitsch/ctrl-access
Unterstützte Sprachen 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"
}