ctrl-access

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

ctrl-access란 무엇입니까?

ctrl-access은(는) Florian Loitsch에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Navigate to links with a trigger key (by default the ctrl-key)."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ctrl-access 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 ctrl-access ctrl-access
ID glmoehiilkjpgcimmfodllkkhpeikomb
공식 URL https://chromewebstore.google.com/detail/ctrl-access/glmoehiilkjpgcimmfodllkkhpeikomb
설명 Navigate to links with a trigger key (by default the ctrl-key).
파일 크기 725 KB
설치 횟수 68
현재 버전 0.7.0
최근 업데이트 2020-08-16
출시 날짜 2019-12-16
평점 5.00/5 총 4 개의 평점
개발자 Florian Loitsch
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/floitsch/ctrl-access
지원되는 언어 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"
}