Switch Tabs

The easiest way to switch tabs on Google Chrome.

什麼是Switch Tabs?

Switch Tabs是由https://switchtabs.xyz開發的Chrome擴展程式,該擴展的主要功能是“The easiest way to switch tabs on Google Chrome.”。

擴展截圖

screenshot
screenshot
screenshot

下載Switch Tabs擴展crx文件

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

擴展使用說明

                        Switch Tabs is the only extension that lets you easily preview opened tabs and switch between them quickly. 

- Press Alt + X to jump to the previous tab
- Press Alt + C to go to the next tab

Or 

- Use Alt + the keyboard arrows (←, →, ↑, ↓)
- or click with the mouse cursor to select tabs directly.

Enjoy!                    

擴展基本資訊

名稱 Switch Tabs Switch Tabs
ID idiomkjpboogdmkpndeepnkldhbpnnpb
官方網址 https://chromewebstore.google.com/detail/switch-tabs/idiomkjpboogdmkpndeepnkldhbpnnpb
簡介 The easiest way to switch tabs on Google Chrome.
檔案大小 307 KB
安裝次數 1,520
目前版本 0.1
更新時間 2017-04-16
上架時間 2017-04-15
評分 2.64/5 共 36 次評分
開發者 https://switchtabs.xyz
電子郵箱 [email protected]
付費類型 free
擴展官網 http://switchtabs.xyz
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Switch Tabs",
    "short_name": "Switch Tabs",
    "description": "The easiest way to switch tabs on Google Chrome.",
    "version": "0.1",
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_title": "Switch Tabs"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/cs_styles.css"
            ],
            "js": [
                "libs\/jquery-1.12.0.min.js",
                "libs\/keypress-2.1.4.min.js",
                "libs\/lodash.js",
                "scripts\/config.js",
                "scripts\/actions.js",
                "scripts\/tools.js",
                "scripts\/cs_screenCapture.js",
                "scripts\/cs_bootstrap.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "libs\/lodash.js",
            "scripts\/config.js",
            "scripts\/actions.js",
            "scripts\/tools.js",
            "scripts\/bs_screenCapture.js",
            "scripts\/bs_main.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        ""
    ],
    "web_accessible_resources": [
        "css\/cs_styles.css",
        "libs\/lodash.js",
        "scripts\/config.js"
    ]
}