Simple Tab Switcher

A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.

Simple Tab Switcherとは何ですか?

Simple Tab SwitcherはJmQuによって開発されたChromeの拡張機能で、その主な機能は「A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        A FREE and SIMPLE tab switcher which enables a shortcut to switch the current tab to previous one. In addition, an extra shortcut to switch the current tab across different windows is also available.

- The default shortcut to switch tabs is [Alt + q] (Option + q) on MacOs.
- The default shortcut to switch windows is [Alt + w] (Option + w) on MacOs.

*P.S.* You can change it through the *chrome://extensions/shortcuts*.

It is open source at https://github.com/SanCoder-Q/tab-switcher                    

拡張機能の基本情報

名前 Simple Tab Switcher Simple Tab Switcher
ID jmihjpkeaeknejefhonkbgldenaplegj
公式URL https://chrome.google.com/webstore/detail/simple-tab-switcher/jmihjpkeaeknejefhonkbgldenaplegj
説明 A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.
ファイルサイズ 24.19 KB
インストール数 62
現在のバージョン 0.2.1
最終更新日 2022-09-24
公開日 2019-03-04
評価 5.00/5 合計 2 レビュー
開発者 JmQu
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/SanCoder-Q/tab-switcher
ヘルプページのURL https://github.com/SanCoder-Q/tab-switcher
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Tab Switcher",
    "description": "A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.",
    "version": "0.2.1",
    "icons": {
        "16": "resources\/90.png",
        "48": "resources\/90.png",
        "128": "resources\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "resources\/90.png",
            "48": "resources\/90.png",
            "128": "resources\/128.png"
        }
    },
    "background": {
        "scripts": [
            "bundle.min.js"
        ]
    },
    "commands": {
        "switchTab": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Switch to recent tab"
        },
        "moveTabCrossWindow": {
            "suggested_key": {
                "default": "Alt+W"
            },
            "description": "Move current tab to next window"
        }
    },
    "permissions": [
        "storage",
        "commands",
        "tabs"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "homepage_url": "https:\/\/github.com\/SanCoder-Q\/tab-switcher"
}