Switch Tab Shortcut
Customize chrome shortcut to switch tabs
什么是Switch Tab Shortcut?
Switch Tab Shortcut是由Stanley Guevara开发的Chrome扩展程序,该扩展的主要功能是“Customize chrome shortcut to switch tabs”。
下载Switch Tab Shortcut扩展crx文件
下载Switch Tab Shortcut扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Simple extension for switching to next/previous tab.
Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys. 扩展基本信息
| 名称 | |
| ID | pfeobfgjcmcpgkodpodibnggeanmoddk |
| 官方URL | https://chromewebstore.google.com/detail/switch-tab-shortcut/pfeobfgjcmcpgkodpodibnggeanmoddk |
| 简介 | Customize chrome shortcut to switch tabs |
| 文件大小 | 3.37 KB |
| 安装次数 | 27 |
| 当前版本 | 1.0 |
| 更新时间 | 2016-10-16 |
| 上架时间 | 2016-10-16 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | Stanley Guevara |
| 付费类型 | free |
| 扩展官网 | https://github.com/stanleyguevara/chrome-switch-tab-shortcut |
| 帮助页面URL | https://github.com/stanleyguevara/chrome-switch-tab-shortcut |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Switch Tab Shortcut",
"permissions": [
"tabs"
],
"version": "1.0",
"description": "Customize chrome shortcut to switch tabs",
"commands": {
"next-tab": {
"suggested_key": {
"default": "Ctrl+Right",
"mac": "Command+Right"
},
"description": "Next tab"
},
"prev-tab": {
"suggested_key": {
"default": "Ctrl+Left",
"mac": "Command+Left"
},
"description": "Prev tab"
}
},
"background": {
"scripts": [
"main.js"
],
"persistent": false
}
} | |