ShuffleTab

Keyboard shortcut tool for managing tabs and windows

ShuffleTabคืออะไร?

ShuffleTab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lausam.dev และคุณลักษณะหลักของมันคือ "Keyboard shortcut tool for managing tabs and windows"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        By holding control along with the arrow keys, tabs can be arranged quickly and easily within a window, or transferred between them. 
Move tabs left or right, group tabs in a new window, and return them to their previous window all without using a mouse!

--- Update 1.50 ------------------------
Added customisation options accessible by clicking on the ShuffleTab logo and going to the Settings tab:
    -Decide the behaviour of Control+Down; either moves the active tab,
     all until far left, or all until far right.
    -Determine if Control+Up returns a tab immediately or if it goes to far
     left first.
    -Tabs can now remember their position in the previous window; decide 
     whether you want them to return to it.
and more...                    

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

ชื่อ ShuffleTab ShuffleTab
ID dgdnnanaohagafffokijmgcfnmhgcmeb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/shuffletab/dgdnnanaohagafffokijmgcfnmhgcmeb
คำอธิบาย Keyboard shortcut tool for managing tabs and windows
ขนาดไฟล์ 453 KB
จำนวนการติดตั้ง 67
เวอร์ชันปัจจุบัน 1.50
อัปเดตครั้งล่าสุด 2017-05-06
วันที่เผยแพร่ 2017-05-06
คะแนน 5.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา lausam.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ShuffleTab",
    "description": "Keyboard shortcut tool for managing tabs and windows",
    "version": "1.50",
    "offline_enabled": true,
    "icons": {
        "16": "icon2.png",
        "32": "icon2.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon2.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "leftTab": {
            "suggested_key": {
                "default": "Ctrl+Left"
            },
            "description": "Move left"
        },
        "rightTab": {
            "suggested_key": {
                "default": "Ctrl+Right"
            },
            "description": "Move right"
        },
        "firstTab": {
            "suggested_key": {
                "default": "Ctrl+Up"
            },
            "description": "Return"
        },
        "newWindow": {
            "suggested_key": {
                "default": "Ctrl+Down"
            },
            "description": "New window"
        }
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}