Tab Mover (Move tabs with keyboard shortcuts)

Move your tabs around with keyboard shortcuts

Tab Mover (Move tabs with keyboard shortcuts) là gì?

Tab Mover (Move tabs with keyboard shortcuts) là một tiện ích mở rộng Chrome được phát triển bởi Dennis Paagman, và tính năng chính của nó là "Move your tabs around with keyboard shortcuts".

Tải xuống tệp CRX của tiện ích mở rộng Tab Mover (Move tabs with keyboard shortcuts)

Tải xuống các tệp mở rộng Tab Mover (Move tabs with keyboard shortcuts) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Move your tabs around with keyboard shortcuts.

Installation instructions:

Install the extension directly from the Chrome Web Store
Scroll to the bottom of your 'Extensions' preferences
Click 'Keyboard Shortcuts' at the bottom right
Set your keyboard shortcuts, I use Cmd-Shift-O and Cmd-Shift-P because they sit nicely close to tab switching shortcuts Cmd-Shift-[ and Cmd-Shift-]                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tab Mover (Move tabs with keyboard shortcuts) Tab Mover (Move tabs with keyboard shortcuts)
ID dbkbmgieiomjnpimkilnkkcjioecdmio
URL Chính Thức https://chromewebstore.google.com/detail/tab-mover-move-tabs-with/dbkbmgieiomjnpimkilnkkcjioecdmio
Mô tả Move your tabs around with keyboard shortcuts
Kích Thước Tệp 19.11 KB
Số Lần Cài Đặt 46
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2016-11-25
Ngày Phát Hành 2016-11-25
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Dennis Paagman
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Mover (Move tabs with keyboard shortcuts)",
    "short_name": "Tab Mover",
    "description": "Move your tabs around with keyboard shortcuts",
    "version": "1.2",
    "author": "Dennis Paagman",
    "icons": {
        "128": "icon-128.png",
        "64": "icon-64.png"
    },
    "background": {
        "scripts": [
            "tabMover.js"
        ]
    },
    "permissions": [
        "activeTab"
    ],
    "commands": {
        "move-tab-left": {
            "suggested_key": {
                "default": "Ctrl+Shift+O",
                "mac": "Command+Shift+O"
            },
            "description": "Move current tab to the left"
        },
        "move-tab-right": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "Command+Shift+P"
            },
            "description": "Move current tab to the right"
        }
    }
}