Switch Tab Shortcut

Customize chrome shortcut to switch tabs

什麼是Switch Tab Shortcut?

Switch Tab Shortcut是由Stanley Guevara開發的Chrome擴展程式,該擴展的主要功能是“Customize chrome shortcut to switch tabs”。

下載Switch Tab Shortcut擴展crx文件

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

擴展使用說明

                        Simple extension for switching to next/previous tab.

Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.                    

擴展基本資訊

名稱 Switch Tab Shortcut Switch Tab Shortcut
ID pfeobfgjcmcpgkodpodibnggeanmoddk
官方網址 https://chromewebstore.google.com/detail/switch-tab-shortcut/pfeobfgjcmcpgkodpodibnggeanmoddk
簡介 Customize chrome shortcut to switch tabs
檔案大小 3.37 KB
安裝次數 27
目前版本 1.0
更新時間 2016-10-16
上架時間 2016-10-16
評分 5.00/5 共 2 次評分
開發者 Stanley Guevara
付費類型 free
擴展官網 https://github.com/stanleyguevara/chrome-switch-tab-shortcut
說明頁面URL https://github.com/stanleyguevara/chrome-switch-tab-shortcut
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Switch Tab Shortcut",
    "permissions": [
        "tabs"
    ],
    "version": "1.0",
    "description": "Customize chrome shortcut to switch tabs",
    "commands": {
        "next-tab": {
            "suggested_key": {
                "default": "Ctrl+Right",
                "mac": "Command+Right"
            },
            "description": "Next tab"
        },
        "prev-tab": {
            "suggested_key": {
                "default": "Ctrl+Left",
                "mac": "Command+Left"
            },
            "description": "Prev tab"
        }
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    }
}