Mac Fullscreen Tab Mover

Best tool for moving your tabs around!

什麼是Mac Fullscreen Tab Mover?

Mac Fullscreen Tab Mover是由Jonathan C開發的Chrome擴展程式,該擴展的主要功能是“Best tool for moving your tabs around!”。

擴展截圖

screenshot

下載Mac Fullscreen Tab Mover擴展crx文件

下載Mac Fullscreen Tab Mover擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Mac Fullscreen Tab Mover Mac Fullscreen Tab Mover
ID kcckoecdhkegbkoboplfcakhinocgibp
官方網址 https://chromewebstore.google.com/detail/mac-fullscreen-tab-mover/kcckoecdhkegbkoboplfcakhinocgibp
簡介 Best tool for moving your tabs around!
檔案大小 527 KB
安裝次數 82
目前版本 1.1.0.0
更新時間 2016-11-07
上架時間 2016-11-06
評分 5.00/5 共 1 次評分
開發者 Jonathan C
電子郵箱 [email protected]
付費類型 free
支援的語言 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
        }
    }
}