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 |
| 官方網址 | 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."
}
}
} | |