Reload All Tabs
Reload all tabs using keyboard shortcut or toolbar button.
Что такое Reload All Tabs?
Reload All Tabs - это расширение Chrome, разработанное Benni, и его основная функция - "Reload all tabs using keyboard shortcut or toolbar button.".
Снимки экрана расширения
Скачать файл CRX расширения Reload All Tabs
Скачайте файлы расширений Reload All Tabs в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Reload All Tabs is a lite extension that let you easily reload all tabs with click of a button. Simply add this add-on to your browser and click on the - Reload All Tabs - toolbar icon. All open tabs will be reloaded upon clicking on the toolbar button. You can exclude tabs based on pin, active, audible, discard or private states. If you want to exclude certain tabs from reloading, please visit the options page and mark the desired option. Please note that, you cannot exclude a tab based on the URL. If you have a feature request, or you want to report a bug, please fill the bug report form in the addon's homepage (https://mybrowseraddon.com/reload-all-tabs.html).
Основная информация о расширении
Название | Reload All Tabs |
ID | biidfoapgncnlhpdhjapkkbankbnnhnj |
Официальный URL | https://chromewebstore.google.com/detail/reload-all-tabs/biidfoapgncnlhpdhjapkkbankbnnhnj |
Описание | Reload all tabs using keyboard shortcut or toolbar button. |
Размер файла | 24.58 KB |
Количество установок | 27,282 |
Текущая Версия | 0.1.3 |
Последнее Обновление | 2023-07-30 |
Дата публикации | 2019-12-23 |
Рейтинг | 4.06/5 Всего 17 оценок |
Разработчик | Benni |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://mybrowseraddon.com/reload-all-tabs.html |
URL страницы помощи | https://mybrowseraddon.com/reload-all-tabs.html |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.3", "manifest_version": 3, "offline_enabled": true, "name": "Reload All Tabs", "permissions": [ "storage" ], "homepage_url": "https:\/\/mybrowseraddon.com\/reload-all-tabs.html", "description": "Reload all tabs using keyboard shortcut or toolbar button.", "background": { "service_worker": "background.js" }, "options_ui": { "open_in_tab": true, "page": "data\/options\/options.html" }, "commands": { "reload-action": { "description": "Reload All Tabs", "suggested_key": { "mac": "Alt+Shift+C", "default": "Alt+Shift+C" } } }, "action": { "default_title": "Reload All Tabs", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |