Tab Switcher

Switch tabs using ctrl+shift+z and ctrl+shift+x.

什么是Tab Switcher?

Tab Switcher是由Ian Ellison-Taylor开发的Chrome扩展程序,该扩展的主要功能是“Switch tabs using ctrl+shift+z and ctrl+shift+x.”。

下载Tab Switcher扩展crx文件

下载Tab Switcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Allows you to switch tabs using Ctrl+Shift+Z and Ctrl+Shift+X                    

扩展基本信息

名称 Tab Switcher Tab Switcher
ID fkpmobfddeinmclggkjaodhijbaohpoe
官方URL https://chrome.google.com/webstore/detail/tab-switcher/fkpmobfddeinmclggkjaodhijbaohpoe
简介 Switch tabs using ctrl+shift+z and ctrl+shift+x.
文件大小 3.07 KB
安装次数 34
当前版本 0.1
更新时间 2013-02-21
上架时间 2013-02-21
评分 5.00/5 共3次评分
开发者 Ian Ellison-Taylor
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Switcher",
    "version": "0.1",
    "description": "Switch tabs using ctrl+shift+z and ctrl+shift+x.",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "previous-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z"
            },
            "description": "Previous Tab"
        },
        "next-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            },
            "description": "Next Tab"
        }
    }
}