Tab Keys

Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.

什么是Tab Keys?

Tab Keys是由thekiteeatingtree开发的Chrome扩展程序,该扩展的主要功能是“Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.”。

下载Tab Keys扩展crx文件

下载Tab Keys扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Allows you to set keyboard shortcuts for selecting the next or previous tab.  Also offers the ability to add a shortcut to pin tabs.  

The default shortcuts for next/prev tab are Ctrl+Right/Left.  To edit the shortcuts click on the extension icon and hit 'Manage extensions'.  Scroll to the bottom of the page and click 'Keyboard shortcuts'.  This extensions shortcuts will be editable under the 'Tab Keys' header.                    

扩展基本信息

名称 Tab Keys Tab Keys
ID fmmkbjckdjobofhoikpldcahemfccffo
官方URL https://chrome.google.com/webstore/detail/tab-keys/fmmkbjckdjobofhoikpldcahemfccffo
简介 Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.
文件大小 4.5 KB
安装次数 21
当前版本 1.0
更新时间 2017-07-27
上架时间 2017-07-27
开发者 thekiteeatingtree
付费类型 free
扩展官网 https://github.com/TheKiteEatingTree/TabKeys
帮助页面URL https://github.com/TheKiteEatingTree/TabKeys/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Keys",
    "description": "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next\/prev tab.",
    "version": "1.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "next-tab": {
            "suggested_key": {
                "default": "Ctrl+Right"
            },
            "description": "Select the next tab"
        },
        "prev-tab": {
            "suggested_key": {
                "default": "Ctrl+Left"
            },
            "description": "Select the previous tab"
        },
        "pin-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+P"
            },
            "description": "Pin the current tab"
        }
    }
}