Chrome tabs switcher

Chrome extension for easy switching between tabs

什么是Chrome tabs switcher?

Chrome tabs switcher是由Vasili Molakhau开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension for easy switching between tabs”。

扩展截图

screenshot
screenshot
screenshot

下载Chrome tabs switcher扩展crx文件

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

扩展使用说明

                        Chrome extension for easy switching between tabs.

Features:
- Shows all tabs in all opened windows (including incognito if appropriate checkbox is selected on chrome://extensions page).
- Allows to filter tabs list with help of text entered in search field.
- Each tab item listed in application includes page title, url and favicon (except cases when current page is loaded via https, but favicon is hosted via http - to prevent mixed content on the page.)
- Allows to close any of listed tabs from the application.
- Allows to navigate between listed tabs via ArrowDown/ArrowUp, Tab/Shift+Tab keys.

Usage:
- Install via chrome web store
- Refresh page to ensure extension script has been loaded
- Use key combination Ctrl + B (will be improved in further versions) to open application
- Apply filter if necessary
- Choose tab you want to switch to and click on it
- Click on the cross icon to close desired tab.

Roadmap:
- Add keyboard support for tabs closing functionality
- Improve keyboard interactions inside application
- Add dynamic configuration for application appearance and functionality                    

扩展基本信息

名称 Chrome tabs switcher Chrome tabs switcher
ID blnlokddecelmlhfpnmeekjcfdfapmjl
官方URL https://chromewebstore.google.com/detail/chrome-tabs-switcher/blnlokddecelmlhfpnmeekjcfdfapmjl
简介 Chrome extension for easy switching between tabs
文件大小 126 KB
安装次数 223
当前版本 0.7.6
更新时间 2017-02-18
上架时间 2017-02-18
评分 2.89/5 共9次评分
开发者 Vasili Molakhau
付费类型 free
扩展官网 https://github.com/dashukin/chrome-tabs-switcher
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome tabs switcher",
    "version": "0.7.6",
    "default_locale": "en",
    "description": "Chrome extension for easy switching between tabs",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "author": "Vasili Molakhau ",
    "background": {
        "scripts": [
            "js\/eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/contentstyles.css"
            ],
            "js": [
                "js\/contentscript.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "current_locale": "'en'",
    "incognito": "spanning",
    "offline_enabled": true,
    "permissions": [
        "tabs"
    ],
    "short_name": "Tabs",
    "storage": [],
    "tts_engine": [],
    "web_accessible_resources": []
}