Super Refresh
Refresh all the tabs! Click on the extension icon or use the keyboard shortcut to reload all open tabs in the current window.
Что такое Super Refresh?
Super Refresh - это расширение Chrome, разработанное Karl Dreher, и его основная функция - "Refresh all the tabs! Click on the extension icon or use the keyboard shortcut to reload all open tabs in the current window.".
Снимки экрана расширения
Скачать файл CRX расширения Super Refresh
Скачайте файлы расширений Super Refresh в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Either click the extension icon, or use the keyboard shortcut (default: Ctrl-Shift-5) to refresh all tabs in the open window. As of version 1.1.1 you are able to set options for the extension: Include Tabs with Audio (default: Off): This setting allows refreshing only tabs that are not audible. Refresh your tabs while not interrupting your music! Always bypass cache (default: Off): Control whether you want to bypass cache whenever Super Refresh is invoked.
Основная информация о расширении
Название | Super Refresh |
ID | dacnjaopeolhngffkagipnnlilhlmkhg |
Официальный URL | https://chromewebstore.google.com/detail/super-refresh/dacnjaopeolhngffkagipnnlilhlmkhg |
Описание | Refresh all the tabs! Click on the extension icon or use the keyboard shortcut to reload all open tabs in the current window. |
Размер файла | 17.54 KB |
Количество установок | 30 |
Текущая Версия | 1.1.1 |
Последнее Обновление | 2021-05-16 |
Дата публикации | 2021-01-26 |
Рейтинг | 4.50/5 Всего 2 оценок |
Разработчик | Karl Dreher |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/karldreher/Super-Refresh |
URL страницы помощи | https://github.com/karldreher/Super-Refresh/issues |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Super Refresh", "version": "1.1.1", "description": "Refresh all the tabs! Click on the extension icon or use the keyboard shortcut to reload all open tabs in the current window.", "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "background": { "scripts": [ "background.js" ] }, "browser_action": [], "commands": { "refreshAll": { "suggested_key": { "default": "Shift+Ctrl+5" }, "description": "Refresh all the tabs!" } }, "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "storage" ] } |