Reload tabs
Reload all of the current window's tabs
¿Qué es Reload tabs?
Reload tabs es una extensión de Chrome desarrollada por msskmlrn, y su función principal es "Reload all of the current window's tabs".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Reload tabs
Descarga archivos de extensión Reload 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
Reload all of the current window's tabs by pressing the icon or using the Ctrl+Shift+E shortcut. You can change the default shortcut to something else by opening the extensions page (chrome://extensions/) and clicking the keyboard shortcuts link in the bottom right corner of the page. From there, find the Reload tabs extension and enter a keyboard shortcut of your choosing. The source code can be found at https://github.com/msskmlrn/reload-tabs.
Información Básica de la Extensión
Nombre | Reload tabs |
ID | onncmmefekihehgnljddnkbbiplicomg |
URL Oficial | https://chromewebstore.google.com/detail/reload-tabs/onncmmefekihehgnljddnkbbiplicomg |
Descripción | Reload all of the current window's tabs |
Tamaño del Archivo | 6.75 KB |
Cantidad de Instalaciones | 31 |
Versión Actual | 1.0 |
Última Actualización | 2014-06-06 |
Fecha de Publicación | 2014-06-06 |
Desarrollador | msskmlrn |
Tipo de Pago | free |
URL de la Página de Ayuda | https://github.com/msskmlrn/reload-tabs |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reload tabs", "short_name": "Reload tabs", "version": "1.0", "description": "Reload all of the current window's tabs", "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "reload.js" ], "persistent": false }, "commands": { "reload-tabs": { "suggested_key": { "default": "Ctrl+Shift+E", "mac": "Command+Shift+E" }, "description": "Reload tabs" } }, "permissions": [ "tabs" ] } |