ctrl-access

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

ctrl-access là gì?

ctrl-access là một tiện ích mở rộng Chrome được phát triển bởi Florian Loitsch, và tính năng chính của nó là "Navigate to links with a trigger key (by default the ctrl-key).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ctrl-access

Tải xuống các tệp mở rộng ctrl-access dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ctrl-access ctrl-access
ID glmoehiilkjpgcimmfodllkkhpeikomb
URL Chính Thức https://chromewebstore.google.com/detail/ctrl-access/glmoehiilkjpgcimmfodllkkhpeikomb
Mô tả Navigate to links with a trigger key (by default the ctrl-key).
Kích Thước Tệp 725 KB
Số Lần Cài Đặt 68
Phiên Bản Hiện Tại 0.7.0
Cập Nhật Lần Cuối 2020-08-16
Ngày Phát Hành 2019-12-16
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Florian Loitsch
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/floitsch/ctrl-access
Ngôn Ngữ Được Hỗ Trợ 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"
}