Alt Tab Shortcuts

Speeds up tab management with simple shortcuts

Alt Tab Shortcutsคืออะไร?

Alt Tab Shortcuts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย iamogbz และคุณลักษณะหลักของมันคือ "Speeds up tab management with simple shortcuts"

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

screenshot
screenshot

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

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

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

                        This extension provides shortcuts for moving tabs between already open chrome windows.
1. Alt+Shift+Right - Move tabs to the next/new window
2. Alt+Shift+Left  - Move tabs to the previous window
3. Alt+Shift+Up    - Pop tabs into new window
4. Alt+Shift+Down  - Pop tabs back into last window / Undo last move action

Stuck performing the following actions when switching or moving tabs between windows?
1. Select and drag out the tabs to a new window
2. Verify the desired destination window is visible below
3. Select and drags tabs to the destination window

That's frustrating and cumbersome especially when you prefer running your browser maximised. This extension aims to solve that, view the options page to view the shortcuts.

For the ultimate chrome tab controls, combine with
• Reorder Tabs Shortcuts - https://chrome.google.com/webstore/detail/keyboard-shortcuts-to-reo/moigagbiaanpboaflikhdhgdfiifdodd?hl=en
• Tab to Window/Popup - https://chrome.google.com/webstore/detail/tab-to-windowpopup-keyboa/adbkphmimfcaeonicpmamfddbbnphikh                    

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

ชื่อ Alt Tab Shortcuts Alt Tab Shortcuts
ID ebdcpdepkbefmgfdkdplcmhfkddagfon
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/alt-tab-shortcuts/ebdcpdepkbefmgfdkdplcmhfkddagfon
คำอธิบาย Speeds up tab management with simple shortcuts
ขนาดไฟล์ 288 KB
จำนวนการติดตั้ง 144
เวอร์ชันปัจจุบัน 1.2.4
อัปเดตครั้งล่าสุด 2021-04-28
วันที่เผยแพร่ 2019-07-06
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา iamogbz
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://ogbizi.com/chrome-alt-tabs/
URL หน้าช่วยเหลือ https://github.com/iamogbz/chrome-alt-tabs/issues
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Alt Tab Shortcuts",
    "version": "1.2.4",
    "description": "Speeds up tab management with simple shortcuts",
    "icons": {
        "16": "icon.16.png",
        "32": "icon.32.png",
        "48": "icon.48.png",
        "128": "icon.128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "tabs-move-out": {
            "suggested_key": {
                "default": "Shift+Alt+Up"
            },
            "description": "Pop tabs out into new window"
        },
        "tabs-move-back": {
            "suggested_key": {
                "default": "Shift+Alt+Down"
            },
            "description": "Pop tabs back into last window"
        },
        "tabs-move-next": {
            "suggested_key": {
                "default": "Shift+Alt+Right"
            },
            "description": "Move tabs to the next\/new window"
        },
        "tabs-move-prev": {
            "suggested_key": {
                "default": "Shift+Alt+Left"
            },
            "description": "Move tabs to the previous window"
        }
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "short_name": "AltTabs",
    "permissions": [
        "tabs"
    ]
}