Reload tabs
Reload all of the current window's tabs
O que é Reload tabs?
Reload tabs é uma extensão do Chrome desenvolvida por msskmlrn, e sua principal característica é "Reload all of the current window's tabs".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Reload tabs
Baixe arquivos de extensão Reload tabs no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Reload tabs |
ID | onncmmefekihehgnljddnkbbiplicomg |
URL Oficial | https://chromewebstore.google.com/detail/reload-tabs/onncmmefekihehgnljddnkbbiplicomg |
Descrição | Reload all of the current window's tabs |
Tamanho do Arquivo | 6.75 KB |
Contagem de Instalações | 31 |
Versão Atual | 1.0 |
Última Atualização | 2014-06-06 |
Data de Publicação | 2014-06-06 |
Desenvolvedor | msskmlrn |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://github.com/msskmlrn/reload-tabs |
Idiomas Suportados | 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" ] } |