Tab Hot Key
Define hotkeys to open or focus frequently used tabs.
Что такое Tab Hot Key?
Tab Hot Key - это расширение Chrome, разработанное https://solvenium.com, и его основная функция - "Define hotkeys to open or focus frequently used tabs.".
Снимки экрана расширения
Скачать файл CRX расширения Tab Hot Key
Скачайте файлы расширений Tab Hot Key в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Jump to frequently used websites using keyboard shortcuts. Press Alt + J, and then a defined hot key to open a website. If a website is already opened then Tab Hot Key activates the existing tab. Otherwise it open the website in a new tab. Unlike other shortcut extensions, Tab Hot Key doesn't inject any scripts in your websites. Instead, our extension opens up a small independent popup just for the moment to capture your shortcut key. It can work globally! You don't have to be in Chrome to use your shortcuts. Just change the base hot key scope from "In Chrome" to Global in chrome://extensions/shortcuts. Unlike other shortcut extensions that work globally, this one doesn't require any additional software.
Основная информация о расширении
Название | Tab Hot Key |
ID | amdglafidmblcmffjcbgkmbogkenfdjh |
Официальный URL | https://chromewebstore.google.com/detail/tab-hot-key/amdglafidmblcmffjcbgkmbogkenfdjh |
Описание | Define hotkeys to open or focus frequently used tabs. |
Размер файла | 13.61 KB |
Количество установок | 25 |
Текущая Версия | 0.1.0 |
Последнее Обновление | 2022-04-11 |
Дата публикации | 2022-04-09 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | https://solvenium.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Tab Hot Key", "version": "0.1.0", "description": "Define hotkeys to open or focus frequently used tabs.", "icons": { "128": "icon128.png" }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "options.html" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "commands": { "jump": { "suggested_key": { "default": "Alt+J" }, "description": "Jump To Tab" } } } |