Close All Tabs On Left

Closes all tabs on the left of current tab

Close All Tabs On Leftとは何ですか?

Close All Tabs On LeftはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Closes all tabs on the left of current tab」です。

Close All Tabs On Left拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        A very simple extension that closes all tabs left of the current tab in the current window. You can also use the shortcut Alt+Shift+Q to close the tabs.                    

拡張機能の基本情報

名前 Close All Tabs On Left Close All Tabs On Left
ID afmdjfefjcfmedhgbegphdjhfckifaij
公式URL https://chromewebstore.google.com/detail/close-all-tabs-on-left/afmdjfefjcfmedhgbegphdjhfckifaij
説明 Closes all tabs on the left of current tab
ファイルサイズ 6.72 KB
インストール数 1,286
現在のバージョン 1.2
最終更新日 2018-04-20
公開日 2018-04-20
評価 5.00/5 合計 8 レビュー
開発者 Unknown
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Close All Tabs On Left",
    "description": "Closes all tabs on the left of current tab",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "commands": {
        "close-all-left-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+Q",
                "mac": "Alt+Shift+Q"
            },
            "description": "Close all tabs on the left of current tab"
        }
    },
    "permissions": [
        "tabs"
    ]
}