Reload All Tabs
Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup.
¿Qué es Reload All Tabs?
Reload All Tabs es una extensión de Chrome desarrollada por https://mohamedmansour.com, y su función principal es "Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Reload All Tabs
Descarga archivos de extensión Reload All Tabs 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
If you want to remove the browser action button (top right), just right click and choose "Hide button". FOLLOW ME ON TWITTER: https://twitter.com/mohamedmansour SOURCE CODE: http://goo.gl/dGDD (GitHub) Ways to Reload All Tabs: - Right click, choose "Reload this window", you can add more options, read next section. - The Blue arrow Icon on the Extension Bar top right (Click on it) - Keyboard Shortcut: Alt+Shift+R (you need to initially set it manually) Add more Context Menus Configurable in Options (enable whatever you want): - Reload all tabs in current window - Reload all tabs in all windows - Reload only pinned or unpinned tabs in current window - Reload all tabs to the left or right - Reload tabs on startup - Allow clearing (bypass) cache while reload. - Close tabs to the left or right Modify the Keyboard Shortcut: - To make it even more secure, we removed all content script permissions, and used chrome commands instead. - Visit chrome://extensions/shortcuts in Chrome to update the combination to anything you want!
Información Básica de la Extensión
Nombre | Reload All Tabs |
ID | midkcinmplflbiflboepnahkboeonkam |
URL Oficial | https://chromewebstore.google.com/detail/reload-all-tabs/midkcinmplflbiflboepnahkboeonkam |
Descripción | Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup. |
Tamaño del Archivo | 24.38 KB |
Cantidad de Instalaciones | 111,178 |
Versión Actual | 5.0.0 |
Última Actualización | 2021-05-06 |
Fecha de Publicación | 2020-06-01 |
Calificación | 4.39/5 Total de 229 Calificaciones |
Desarrollador | https://mohamedmansour.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | http://github.com/mohamedmansour/reload-all-tabs-extension/ |
URL de la Página de Ayuda | http://github.com/mohamedmansour/reload-all-tabs-extension/issues |
URL de la Página de Política de Privacidad | https://mohamedmansour.com/extensions/privacy.html |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reload All Tabs", "version": "5.0.0", "manifest_version": 3, "description": "Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup.", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "action": { "default_icon": "img\/icon128.png", "default_title": "Reload All Tabs" }, "background": { "service_worker": "reload_controller.js" }, "options_page": "options.html", "permissions": [ "storage", "tabs", "contextMenus" ], "commands": { "reload": { "suggested_key": { "default": "Ctrl+Shift+R", "mac": "Command+Shift+R" }, "description": "Toggle reload" } } } |