Tab Hot Key

Define hotkeys to open or focus frequently used tabs.

Tab Hot Key란 무엇입니까?

Tab Hot Key은(는) https://solvenium.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Define hotkeys to open or focus frequently used tabs."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Tab Hot Key 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Jump to frequently used websites using keyboard shortcuts.

Press Alt + J, and then a defined hot key to open a website.

If a website is already opened then Tab Hot Key activates the existing tab. Otherwise it open the website in a new tab.

Unlike other shortcut extensions, Tab Hot Key doesn't inject any scripts in your websites. Instead, our extension opens up a small independent popup just for the moment to capture your shortcut key.

It can work globally! You don't have to be in Chrome to use your shortcuts. Just change the base hot key scope from "In Chrome" to Global in chrome://extensions/shortcuts.

Unlike other shortcut extensions that work globally, this one doesn't require any additional software.                    

확장 프로그램 기본 정보

이름 Tab Hot Key Tab Hot Key
ID amdglafidmblcmffjcbgkmbogkenfdjh
공식 URL https://chromewebstore.google.com/detail/tab-hot-key/amdglafidmblcmffjcbgkmbogkenfdjh
설명 Define hotkeys to open or focus frequently used tabs.
파일 크기 13.61 KB
설치 횟수 25
현재 버전 0.1.0
최근 업데이트 2022-04-11
출시 날짜 2022-04-09
평점 5.00/5 총 1 개의 평점
개발자 https://solvenium.com
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tab Hot Key",
    "version": "0.1.0",
    "description": "Define hotkeys to open or focus frequently used tabs.",
    "icons": {
        "128": "icon128.png"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "commands": {
        "jump": {
            "suggested_key": {
                "default": "Alt+J"
            },
            "description": "Jump To Tab"
        }
    }
}