Reload tabs
Reload all of the current window's tabs
Cos'è Reload tabs?
Reload tabs è un'estensione di Chrome sviluppata da msskmlrn, e la sua funzione principale è "Reload all of the current window's tabs".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Reload tabs
Scarica i file di estensione Reload tabs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Reload tabs |
ID | onncmmefekihehgnljddnkbbiplicomg |
URL Ufficiale | https://chromewebstore.google.com/detail/reload-tabs/onncmmefekihehgnljddnkbbiplicomg |
Descrizione | Reload all of the current window's tabs |
Dimensione del File | 6.75 KB |
Conteggio Installazioni | 31 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2014-06-06 |
Data di Pubblicazione | 2014-06-06 |
Sviluppatore | msskmlrn |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/msskmlrn/reload-tabs |
Lingue Supportate | 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" ] } |