Close Other Tabs

Close other tabs with one click on the extension icon, via context menu or with keyboard shortcuts.

什麼是Close Other Tabs?

Close Other Tabs是由https://www.facebook.com/browservery開發的Chrome擴展程式,該擴展的主要功能是“Close other tabs with one click on the extension icon, via context menu or with keyboard shortcuts.”。

擴展截圖

screenshot

下載Close Other Tabs擴展crx文件

下載Close Other Tabs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Allows you to close other tabs with one click on the extension icon. Right-clicking on the same icon brings context menu with additional options ("Close tabs to the right" and "Close tabs to the left"). 

The extension also supports keyboard shortcuts. Go to chrome://extensions/shortcuts to set them.
----------------------------------------------------------------
🖼️ Follow my Facebook page (more extensions): https://bit.ly/browservery
----------------------------------------------------------------
The icon image used in the extension: https://www.iconfinder.com/icons/309090/close_cross_delete_icon
The color and size of the image were changed.                    

擴展基本資訊

名稱 Close Other Tabs Close Other Tabs
ID higiahnfphokonkjalljdfgjhafdjbil
官方網址 https://chromewebstore.google.com/detail/close-other-tabs/higiahnfphokonkjalljdfgjhafdjbil
簡介 Close other tabs with one click on the extension icon, via context menu or with keyboard shortcuts.
檔案大小 17.42 KB
安裝次數 2,925
目前版本 0.3.0
更新時間 2022-07-05
上架時間 2019-11-18
評分 4.67/5 共 12 次評分
開發者 https://www.facebook.com/browservery
電子郵箱 [email protected]
付費類型 free
擴展官網 https://bit.ly/browservery
說明頁面URL https://bit.ly/browservery-support
隱私政策頁面URL https://github.com/loftyshaky/extensions-privacy-policy/blob/main/extensions-privacy-policy.md
支援的語言 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_name__",
    "description": "__MSG_desc__",
    "version": "0.3.0",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "19": "icons\/icon19.png",
            "32": "icons\/icon32.png",
            "64": "icons\/icon64.png"
        }
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "commands": {
        "close_other_tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "__MSG_close_other_tabs__"
        },
        "close_tabs_to_the_right": {
            "suggested_key": {
                "default": "Ctrl+Shift+3"
            },
            "description": "__MSG_close_tabs_to_the_right__"
        },
        "close_tabs_to_the_left": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "description": "__MSG_close_tabs_to_the_left__"
        }
    }
}