All Tabs Reloader
To reload all tabs, use the keyboard shortcut or toolbar button.
¿Qué es All Tabs Reloader?
All Tabs Reloader es una extensión de Chrome desarrollada por worldaddons.com, y su función principal es "To reload all tabs, use the keyboard shortcut or toolbar button.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión All Tabs Reloader
Descarga archivos de extensión All Tabs Reloader en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
"All Tabs Reloader" is a lightweight extension that allows you to reload all tabs with the click of a button. To reload all tabs in your browser, simply install this extension and select the - Reload All Tabs - button from the toolbar. All active tabs will be reloaded when you press the button. You can filter open tabs by state, including inactive, audible, disposable, or private. If you'd like to prevent a tab from reloading, go to the preferences page and check the box for the option. Please keep in mind that you can't prevent a tab based on its URL.
Información Básica de la Extensión
Nombre | |
ID | cgmnahabbgcglgodggdoimncelmanegm |
URL Oficial | https://chrome.google.com/webstore/detail/all-tabs-reloader/cgmnahabbgcglgodggdoimncelmanegm |
Descripción | To reload all tabs, use the keyboard shortcut or toolbar button. |
Tamaño del Archivo | 25.66 KB |
Cantidad de Instalaciones | 70 |
Versión Actual | 0.1 |
Última Actualización | 2022-05-25 |
Fecha de Publicación | 2022-05-25 |
Calificación | 4.91/5 Total de 47 Calificaciones |
Desarrollador | worldaddons.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://worldaddons.com/all-tabs-reloader/ |
URL de la Página de Ayuda | https://worldaddons.com/contact/ |
URL de la Página de Política de Privacidad | https://worldaddons.com/privacy-policy |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1", "manifest_version": 3, "offline_enabled": true, "name": "All Tabs Reloader", "permissions": [ "storage" ], "short_name": "all-tabs-reloader", "homepage_url": "https:\/\/worldaddons.com\/all-tabs-reloader\/", "description": "To reload all tabs, use the keyboard shortcut or toolbar button.", "background": { "service_worker": "background.js" }, "options_ui": { "open_in_tab": true, "page": "source\/options\/options.html" }, "commands": { "reload-action": { "description": "All Tabs Reloader", "suggested_key": { "mac": "Alt+Shift+C", "default": "Alt+Shift+C" } } }, "action": { "default_title": "All Tabs Reloader", "default_icon": { "16": "source\/icons\/16.png", "32": "source\/icons\/32.png", "48": "source\/icons\/48.png", "64": "source\/icons\/64.png" } }, "icons": { "16": "source\/icons\/16.png", "32": "source\/icons\/32.png", "48": "source\/icons\/48.png", "64": "source\/icons\/64.png", "128": "source\/icons\/128.png" } } |