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 - это расширение Chrome, разработанное benl, и его основная функция - "Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…".
Снимки экрана расширения
Скачать файл CRX расширения Tab Cycler
Скачайте файлы расширений 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."
}
}
} | |