Tab Mover (Move tabs with keyboard shortcuts)
Move your tabs around with keyboard shortcuts
Что такое Tab Mover (Move tabs with keyboard shortcuts)?
Tab Mover (Move tabs with keyboard shortcuts) - это расширение Chrome, разработанное Dennis Paagman, и его основная функция - "Move your tabs around with keyboard shortcuts".
Скачать файл CRX расширения Tab Mover (Move tabs with keyboard shortcuts)
Скачайте файлы расширений Tab Mover (Move tabs with keyboard shortcuts) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Move your tabs around with keyboard shortcuts.
Installation instructions:
Install the extension directly from the Chrome Web Store
Scroll to the bottom of your 'Extensions' preferences
Click 'Keyboard Shortcuts' at the bottom right
Set your keyboard shortcuts, I use Cmd-Shift-O and Cmd-Shift-P because they sit nicely close to tab switching shortcuts Cmd-Shift-[ and Cmd-Shift-] Основная информация о расширении
| Название | |
| ID | dbkbmgieiomjnpimkilnkkcjioecdmio |
| Официальный URL | https://chromewebstore.google.com/detail/tab-mover-move-tabs-with/dbkbmgieiomjnpimkilnkkcjioecdmio |
| Описание | Move your tabs around with keyboard shortcuts |
| Размер файла | 19.11 KB |
| Количество установок | 46 |
| Текущая Версия | 1.2 |
| Последнее Обновление | 2016-11-25 |
| Дата публикации | 2016-11-25 |
| Рейтинг | 3.67/5 Всего 3 оценок |
| Разработчик | Dennis Paagman |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tab Mover (Move tabs with keyboard shortcuts)",
"short_name": "Tab Mover",
"description": "Move your tabs around with keyboard shortcuts",
"version": "1.2",
"author": "Dennis Paagman",
"icons": {
"128": "icon-128.png",
"64": "icon-64.png"
},
"background": {
"scripts": [
"tabMover.js"
]
},
"permissions": [
"activeTab"
],
"commands": {
"move-tab-left": {
"suggested_key": {
"default": "Ctrl+Shift+O",
"mac": "Command+Shift+O"
},
"description": "Move current tab to the left"
},
"move-tab-right": {
"suggested_key": {
"default": "Ctrl+Shift+P",
"mac": "Command+Shift+P"
},
"description": "Move current tab to the right"
}
}
} | |