Pop out tabs to new window
Click the extension's toolbar button to pop out selected tab(s) to a new window.
Что такое Pop out tabs to new window?
Pop out tabs to new window - это расширение Chrome, разработанное Ivan Novikov, и его основная функция - "Click the extension's toolbar button to pop out selected tab(s) to a new window.".
Скачать файл CRX расширения Pop out tabs to new window
Скачайте файлы расширений Pop out tabs to new window в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Default shortcut: Alt+P.
Usually you have just the current tab selected, but Chrome also has built-in functionality to select multiple tabs:
— To select specific tabs in a window, click tab handles while holding down Cmd (Mac) or Ctrl (Windows) key.
— To select a range of tabs, click tab handles while holding down the Shift key.
Source code: https://github.com/ivan7237d/pop-out-tabs Основная информация о расширении
| Название | |
| ID | lhnaddgiebpcecbcmfcjmlhinfpkkjii |
| Официальный URL | https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii |
| Описание | Click the extension's toolbar button to pop out selected tab(s) to a new window. |
| Размер файла | 3.38 KB |
| Количество установок | 248 |
| Текущая Версия | 1.1 |
| Последнее Обновление | 2018-03-14 |
| Дата публикации | 2018-03-14 |
| Рейтинг | 5.00/5 Всего 3 оценок |
| Разработчик | Ivan Novikov |
| Тип оплаты | free |
| Официальный сайт расширения | https://twitter.com/ivan7237d |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Pop out tabs to new window",
"version": "1.1",
"description": "Click the extension's toolbar button to pop out selected tab(s) to a new window.",
"manifest_version": 2,
"background": {
"persistent": true,
"scripts": [
"background.js"
]
},
"offline_enabled": true,
"browser_action": {
"default_title": "Pop out tabs to new window"
},
"commands": {
"popout_action": {
"suggested_key": {
"default": "Alt+P"
},
"description": "Pop out tabs to new window"
}
}
} | |