Hot Tabs: Tab Hotkeys/Shortcuts

Assign hotkeys to any of your tabs!

Hot Tabs: Tab Hotkeys/Shortcutsคืออะไร?

Hot Tabs: Tab Hotkeys/Shortcuts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Skylight Software และคุณลักษณะหลักของมันคือ "Assign hotkeys to any of your tabs!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hot Tabs: Tab Hotkeys/Shortcuts

ดาวน์โหลดไฟล์ส่วนขยาย Hot Tabs: Tab Hotkeys/Shortcuts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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:\/\/*\/"
    ]
}