Hot Tabs: Tab Hotkeys/Shortcuts

Assign hotkeys to any of your tabs!

Hot Tabs: Tab Hotkeys/Shortcuts란 무엇입니까?

Hot Tabs: Tab Hotkeys/Shortcuts은(는) Skylight Software에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Assign hotkeys to any of your tabs!"입니다.

확장 프로그램 스크린샷

screenshot

Hot Tabs: Tab Hotkeys/Shortcuts 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Please ##### RESTART CHROME ##### after downloading

Hot Tabs allows you to quickly assign hotkeys to your tabs! 

1. Assign a key (from 0-9) to your current tab by using Alt + key
2. Key number shows up on tab title
3. Press the key and immediately moved to the assigned tab! 

---> Alt + A goes back to previous tabs
---> "\" (Backslash) toggles text input
---> Temporarily disable the extension completely by clicking the icon or using Alt + X

IMPORTANT: Text input is disabled until you press backslash "\"

For browsing convenience, commands like ctrl+F, copy, paste, etc are still functional even when typing is disabled.

Feedback is appreciated! Please use the "Support" tab :)                    

확장 프로그램 기본 정보

이름 Hot Tabs: Tab Hotkeys/Shortcuts Hot Tabs: Tab Hotkeys/Shortcuts
ID lkogifjbcanigkpjinikonpcedpnmdni
공식 URL https://chromewebstore.google.com/detail/hot-tabs-tab-hotkeysshort/lkogifjbcanigkpjinikonpcedpnmdni
설명 Assign hotkeys to any of your tabs!
파일 크기 31.08 KB
설치 횟수 13
현재 버전 0.7.5
최근 업데이트 2015-07-21
출시 날짜 2015-07-20
평점 1.00/5 총 1 개의 평점
개발자 Skylight Software
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hot Tabs: Tab Hotkeys\/Shortcuts",
    "description": "Assign hotkeys to any of your tabs!",
    "version": "0.7.5",
    "browser_action": {
        "default_icon": "icon-128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "commands": {
        "toggle": {
            "suggested_key": {
                "default": "Alt+X"
            },
            "description": "Toggles tab switching"
        },
        "previous_tab": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Go back to previous tab"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "keyscript.js"
            ],
            "css": [
                "indicator.css"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "https:\/\/ajax.googleapis.com\/",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}