Tab Cycler
Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…
什么是Tab Cycler?
Tab Cycler是由benl开发的Chrome扩展程序,该扩展的主要功能是“Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…”。
扩展截图
下载Tab Cycler扩展crx文件
下载Tab Cycler扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs.
Defaults:
Alt-Shift-Left Arrow -> Cycle tab left.
Alt-Shift-Right Arrow -> Cycle tab right.
To customize shortcuts: Settings -> Extensions -> Keyboard shortcuts (bottom of page)
Code hosted at: https://github.com/benletchford/chrome-tab-cycler 扩展基本信息
| 名称 | |
| ID | bognkjnmfbfjobpbmbnnhhojmikehonf |
| 官方URL | https://chromewebstore.google.com/detail/tab-cycler/bognkjnmfbfjobpbmbnnhhojmikehonf |
| 简介 | Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left… |
| 文件大小 | 5.02 KB |
| 安装次数 | 58 |
| 当前版本 | 0.2 |
| 更新时间 | 2016-08-01 |
| 上架时间 | 2016-07-31 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | benl |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tab Cycler",
"version": "0.2",
"icons": {
"128": "icon.png"
},
"permissions": [
"tabs",
"activeTab"
],
"background": {
"scripts": [
"background.js"
]
},
"commands": {
"left": {
"suggested_key": {
"default": "Alt+Shift+Left"
},
"description": "Cycle to left tab."
},
"right": {
"suggested_key": {
"default": "Alt+Shift+Right"
},
"description": "Cycle to right tab."
}
}
} | |