Tab Switcher

Rapidly filter and switch between windows & tabs

Tab Switcherとは何ですか?

Tab Switcherはhttps://flowapps.co/tabswitcherによって開発されたChromeの拡張機能で、その主な機能は「Rapidly filter and switch between windows & tabs」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Tab Switcher拡張機能のCRXファイルをダウンロード

Tab Switcher拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Tab Switcher lets you to quickly switch to other open tabs using only the keyboard, including filtering tabs by partial name or URL match.

- Filter by tab title or URL with fuzzy autocompletion.
- Press ⌘/Ctrl⇧K to start filtering, move selection with ↑↓, press ⏎ to switch.

WHAT'S NEW
November 6th 2019 – You can now drag and and drop tabs between windows. And of course, dark mode!
September 8th 2018 – Updated to match the new Chrome Material design
July 23th 2018 – Users can now decide whether to show tabs from all windows
July 8th 2018 – It's now possible to switch between windows.

FAQ

Why does Tab Switcher need access to my browsing history? 
– This is required to allow you to search and switch between tabs. Only titles and URLs of tab are used for this, and no data is stored or sent anywhere. Please check out the source code at https://github.com/kallepersson/tabswitcher.

How do I change the keyboard shortcut to show Tab Switcher?
– It's easy, you can change the Keyboard Shortcut at the bottom of the Extensions Settings Page!

PRIVACY POLICY
Please find the privacy policy at http://flowapps.co/tabswitcher/privacypolicy.html                    

拡張機能の基本情報

名前 Tab Switcher Tab Switcher
ID gcilookdakgpccpbcjgnpaecofklimck
公式URL https://chromewebstore.google.com/detail/tab-switcher/gcilookdakgpccpbcjgnpaecofklimck
説明 Rapidly filter and switch between windows & tabs
ファイルサイズ 53.98 KB
インストール数 5,368
現在のバージョン 2.2.0
最終更新日 2020-11-18
公開日 2020-02-10
評価 4.70/5 合計 23 レビュー
開発者 https://flowapps.co/tabswitcher
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://flowapps.co/tabswitcher/
ヘルプページのURL http://flowapps.co/tabswitcher/
プライバシーポリシーページのURL http://flowapps.co/privacypolicy.html
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Switcher",
    "author": "Kalle Persson",
    "version": "2.2.0",
    "homepage_url": "http:\/\/flowapps.co\/tabswitcher",
    "description": "Rapidly filter and switch between windows & tabs",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "19": "icons\/icon-19.png",
        "38": "icons\/icon-38.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png",
        "256": "icons\/icon-256.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "switcher.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            }
        }
    }
}