Close Tab Shortcut

Customize chrome shortcut to close current tab

什麼是Close Tab Shortcut?

Close Tab Shortcut是由Stanley Guevara開發的Chrome擴展程式,該擴展的主要功能是“Customize chrome shortcut to close current tab”。

下載Close Tab Shortcut擴展crx文件

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

擴展使用說明

                        Simple extension for closing active tab.

Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.                    

擴展基本資訊

名稱 Close Tab Shortcut Close Tab Shortcut
ID oohndijkoieelbpmfehjecdihiiaecgb
官方網址 https://chrome.google.com/webstore/detail/oohndijkoieelbpmfehjecdihiiaecgb
簡介 Customize chrome shortcut to close current tab
檔案大小 3.21 KB
安裝次數 11
目前版本 1.0
更新時間 2016-10-16
上架時間 2016-10-16
開發者 Stanley Guevara
付費類型 free
擴展官網 https://github.com/stanleyguevara/chrome-close-tab-shortcut
說明頁面URL https://github.com/stanleyguevara/chrome-close-tab-shortcut
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Close Tab Shortcut",
    "permissions": [
        "tabs"
    ],
    "version": "1.0",
    "description": "Customize chrome shortcut to close current tab",
    "commands": {
        "close-tab": {
            "suggested_key": {
                "default": "Alt+X",
                "mac": "Ctrl+X"
            },
            "description": "Close current tab"
        }
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    }
}