Keyboard shortcuts to close Chrome tabs

Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones

什麼是Keyboard shortcuts to close Chrome tabs?

Keyboard shortcuts to close Chrome tabs是由https://diophung.com開發的Chrome擴展程式,該擴展的主要功能是“Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones”。

擴展截圖

screenshot
screenshot

下載Keyboard shortcuts to close Chrome tabs擴展crx文件

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

擴展使用說明

                        Ever wish Chrome has the hotkeys to close tabs to the right, or to the left, or pin current tab? 
This extension will let you do it, and there are more.

You can configure the hotkeys to:
- Close tabs to the left.
- Close tabs to the right.
- Close other tabs.
- Pin/unpin a tab.

Source code available at : https://github.com/diophung/close-chrome-tabs
Please provide your feedback to Twitter: @diophung or email : [email protected].                    

擴展基本資訊

名稱 Keyboard shortcuts to close Chrome tabs Keyboard shortcuts to close Chrome tabs
ID fipfgiejfpcdacpjepkohdlnjonchnal
官方網址 https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/fipfgiejfpcdacpjepkohdlnjonchnal
簡介 Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones
檔案大小 293 KB
安裝次數 4,928
目前版本 0.3.0
更新時間 2022-02-07
上架時間 2018-06-24
評分 4.64/5 共 25 次評分
開發者 https://diophung.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/diophung/close-chrome-tabs
說明頁面URL https://diophung.com/chrome-tab-shortcut-privacy-policy/
隱私政策頁面URL https://github.com/diophung/close-chrome-tabs/wiki/Privacy-Policy
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "close-other-tabs-dp": {
            "description": "Close other tabs",
            "suggested_key": {
                "default": "Alt+Shift+W"
            }
        },
        "close-left-tabs-dp": {
            "description": "Close tabs to the left",
            "suggested_key": {
                "default": "Alt+Shift+L"
            }
        },
        "close-right-tabs-dp": {
            "description": "Close tabs to the right",
            "suggested_key": {
                "default": "Alt+Shift+R"
            }
        },
        "toggle-pin-dp": {
            "description": "Pin\/unpin Tab",
            "suggested_key": {
                "default": "Alt+Shift+P"
            }
        }
    },
    "description": "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left\/right\/other tabs or toggle pinned ones",
    "icons": {
        "128": "images\/tabs_128.png",
        "48": "images\/tabs_48.png"
    },
    "manifest_version": 2,
    "name": "Keyboard shortcuts to close Chrome tabs",
    "short_name": "Shortcuts to close tabs",
    "options_page": "options.html",
    "permissions": [],
    "version": "0.3.0"
}