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
官方URL 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
    }
}