Quick Switch

This extension allows you to quickly switch to any application shortcut or tab pinned in any browser window.

什么是Quick Switch?

Quick Switch是由mhenry1384开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to quickly switch to any application shortcut or tab pinned in any browser window.”。

扩展截图

screenshot

下载Quick Switch扩展crx文件

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

扩展使用说明

                        This extension is intended to be launched via a global keyboard shortcut.  Then from any application on your computer, hit that shortcut and then another key to make a particular pinned tab active.  

To set the global hotkey, click the Keyboard shortcuts link in Chrome's Extensions screen.  In the box next to "Popup Quick Switch" set the hotkey, then set the dropdown to "Global". If you are running Chrome under multiple user profiles, you will have to install the extension on each profile (and assign a different global hotkey for each).

Permissions: Requires access to the current tab information, which Chrome reports as "read your browser history".  It does not actually read your browser history.                    

扩展基本信息

名称 Quick Switch Quick Switch
ID pliiecepjdknmcninijkgcboekaomphi
官方URL https://chromewebstore.google.com/detail/quick-switch/pliiecepjdknmcninijkgcboekaomphi
简介 This extension allows you to quickly switch to any application shortcut or tab pinned in any browser window.
文件大小 301 KB
安装次数 43
当前版本 1.1
更新时间 2014-09-24
上架时间 2014-09-24
评分 1.00/5 共1次评分
开发者 mhenry1384
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "name": "Quick Switch",
    "description": "This extension allows you to quickly switch to any application shortcut or tab pinned in any browser window.",
    "version": "1.1",
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon19.png",
        "default_popup": "popup.html?modal=true"
    },
    "permissions": [
        "tabs"
    ],
    "commands": {
        "popup-quick-search": {
            "description": "Popup Quick Switch",
            "suggested_key": {
                "default": "Ctrl+1"
            }
        }
    }
}