ctrl-access

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

Apa itu ctrl-access?

ctrl-access adalah ekstensi Chrome yang dikembangkan oleh Florian Loitsch, dan fitur utamanya adalah "Navigate to links with a trigger key (by default the ctrl-key).".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi ctrl-access

Unduh file ekstensi ctrl-access dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama ctrl-access ctrl-access
ID glmoehiilkjpgcimmfodllkkhpeikomb
URL Resmi https://chromewebstore.google.com/detail/ctrl-access/glmoehiilkjpgcimmfodllkkhpeikomb
Deskripsi Navigate to links with a trigger key (by default the ctrl-key).
Ukuran File 725 KB
Jumlah Instalasi 68
Versi Saat Ini 0.7.0
Terakhir Diperbarui 2020-08-16
Tanggal Publikasi 2019-12-16
Penilaian 5.00/5 Total 4 Penilaian
Pengembang Florian Loitsch
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/floitsch/ctrl-access
Bahasa yang Didukung 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"
}