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
官方網址 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"
    ]
}