Mac Fullscreen Tab Mover

Best tool for moving your tabs around!

Mac Fullscreen Tab Mover là gì?

Mac Fullscreen Tab Mover là một tiện ích mở rộng Chrome được phát triển bởi Jonathan C, và tính năng chính của nó là "Best tool for moving your tabs around!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mac Fullscreen Tab Mover

Tải xuống các tệp mở rộng Mac Fullscreen Tab Mover 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

                        If you're too lazy to drag a tab from one window to the other, here's your answer. Move tabs around using keyboard shortcuts! 

--Works on ANY operating system--
This extension was originally intended as a workaround for Mac users where users couldn't drag a tab from one fullscreen window to another (hence the name).

NOTE: These shortcuts will have to be manually setup upon installation. This can be done by going to the extension settings (chrome://extensions/), then scrolling down to "Keyboard shortcuts". 
More info will be given once you have installed the extension.

Any feedback will be much appreciated. I will do what I can to improve this extension.                    

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

Tên Mac Fullscreen Tab Mover Mac Fullscreen Tab Mover
ID kcckoecdhkegbkoboplfcakhinocgibp
URL Chính Thức https://chromewebstore.google.com/detail/mac-fullscreen-tab-mover/kcckoecdhkegbkoboplfcakhinocgibp
Mô tả Best tool for moving your tabs around!
Kích Thước Tệp 527 KB
Số Lần Cài Đặt 82
Phiên Bản Hiện Tại 1.1.0.0
Cập Nhật Lần Cuối 2016-11-07
Ngày Phát Hành 2016-11-06
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Jonathan C
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": " Mac Fullscreen Tab Mover",
    "short_name": "MFTM",
    "description": "Best tool for moving your tabs around!",
    "version": "1.1.0.0",
    "manifest_version": 2,
    "offline_enabled": true,
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Current tab as new window"
    },
    "background": {
        "scripts": [
            "script.js"
        ],
        "persistent": true
    },
    "commands": {
        "Ctrl+Shift+Up": {
            "suggested_key": {
                "default": "Ctrl+Shift+Up",
                "mac": "Ctrl+Shift+Up"
            },
            "description": "Move tab to new window",
            "global": true
        },
        "Ctrl+Shift+Down": {
            "suggested_key": {
                "default": "Ctrl+Shift+Down",
                "mac": "Ctrl+Shift+Down"
            },
            "description": "Toggle tab between different sized windows",
            "global": true
        },
        "Ctrl+Shift+Right": {
            "suggested_key": {
                "default": "Ctrl+Shift+Right",
                "mac": "Ctrl+Shift+Right"
            },
            "description": "Move tab to right window",
            "global": true
        },
        "Ctrl+Shift+Left": {
            "suggested_key": {
                "default": "Ctrl+Shift+Left",
                "mac": "Ctrl+Shift+Left"
            },
            "description": "Move tab to left window",
            "global": true
        }
    }
}