Quick Switch
This extension allows you to quickly switch to any application shortcut or tab pinned in any browser window.
Что такое Quick Switch?
Quick Switch - это расширение Chrome, разработанное mhenry1384, и его основная функция - "This extension allows you to quickly switch to any application shortcut or tab pinned in any browser window.".
Снимки экрана расширения
Скачать файл CRX расширения Quick Switch
Скачайте файлы расширений Quick Switch в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension is intended to be launched via a global keyboard shortcut. Then from any application on your computer, hit that shortcut and then another key to make a particular pinned tab active. To set the global hotkey, click the Keyboard shortcuts link in Chrome's Extensions screen. In the box next to "Popup Quick Switch" set the hotkey, then set the dropdown to "Global". If you are running Chrome under multiple user profiles, you will have to install the extension on each profile (and assign a different global hotkey for each). Permissions: Requires access to the current tab information, which Chrome reports as "read your browser history". It does not actually read your browser history.
Основная информация о расширении
Название | |
ID | pliiecepjdknmcninijkgcboekaomphi |
Официальный URL | https://chromewebstore.google.com/detail/quick-switch/pliiecepjdknmcninijkgcboekaomphi |
Описание | This extension allows you to quickly switch to any application shortcut or tab pinned in any browser window. |
Размер файла | 301 KB |
Количество установок | 43 |
Текущая Версия | 1.1 |
Последнее Обновление | 2014-09-24 |
Дата публикации | 2014-09-24 |
Рейтинг | 1.00/5 Всего 1 оценок |
Разработчик | mhenry1384 |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "scripts": [ "background.js" ] }, "name": "Quick Switch", "description": "This extension allows you to quickly switch to any application shortcut or tab pinned in any browser window.", "version": "1.1", "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon19.png", "default_popup": "popup.html?modal=true" }, "permissions": [ "tabs" ], "commands": { "popup-quick-search": { "description": "Popup Quick Switch", "suggested_key": { "default": "Ctrl+1" } } } } |