Hot Tab

Move tabs easier

Hot Tabคืออะไร?

Hot Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mike Quinlan และคุณลักษณะหลักของมันคือ "Move tabs easier"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hot Tab

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

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

                        Updates:

You can now see all registered shortcuts by clicking the toolbar icon.
You can now change the keyboard shortcuts by clicking on the app icon and clicking "Mange Shortcuts"

I got sick and tired of not being able to move my tabs left or right by use of hot keys (which, to me, seems like a feature that should be natively available in Chrome). Anyway, I've added hotkey support through this extension. Hot keys are registered by default as such:

    Move Left: Cmd/Ctrl+Shift+Left
    Move Right: Cmd/Ctrl+Shift+Right
    Pin/Unpin Tab: Cmd/Ctrl+Shift+Down
    Close other tabs: Cmd/Ctrl+Shift+K
    

Please leave feedback if you have any problems/ideas.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Hot Tab Hot Tab
ID odmmgahbfhdcpnjccnlcnecoidkhemmg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hot-tab/odmmgahbfhdcpnjccnlcnecoidkhemmg
คำอธิบาย Move tabs easier
ขนาดไฟล์ 124 KB
จำนวนการติดตั้ง 12
เวอร์ชันปัจจุบัน 2.0.2
อัปเดตครั้งล่าสุด 2023-12-06
วันที่เผยแพร่ 2020-05-04
ผู้พัฒนา Mike Quinlan
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hot Tab",
    "version": "2.0.2",
    "description": "Move tabs easier",
    "icons": {
        "48": "icons\/icon48.png"
    },
    "background": {
        "scripts": [
            "dist\/shared.js",
            "dist\/index.js"
        ]
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "permissions": [
        "contextMenus"
    ],
    "action": {
        "default_title": "Hot Tab",
        "default_popup": "popup.html",
        "default_icon": "icons\/icon128.png"
    },
    "commands": {
        "move-left": {
            "suggested_key": {
                "default": "Ctrl+Shift+Left"
            },
            "description": "Move Tab Left"
        },
        "move-right": {
            "suggested_key": {
                "default": "Ctrl+Shift+Right"
            },
            "description": "Move tab right"
        },
        "pin-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+Down"
            },
            "description": "Toggle pin current tab"
        },
        "close-other-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            },
            "description": "Close other tabs"
        }
    }
}