Reload

A simple Reload button

O que é Reload?

Reload é uma extensão do Chrome desenvolvida por MK, e sua principal característica é "A simple Reload button".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Reload

Baixe arquivos de extensão Reload 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

                        A simple Reload button, for those who want one to the right of the Address Bar.  (Stop function not included; see below.)

To save RAM, the extension uses an event page rather than a persistent background page.  Hopefully it won't lag during heavy disk access.

For a Stop button, see:
https://chrome.google.com/webstore/detail/stop/kkeehnmfddjhlojogndpeaklfhaokkbn

***
Changelog

0.4: Updated icons to match Chrome's new Material theme.

0.3: Removed "tabs" permission.  Turns out it isn't needed to call chrome.tabs.reload.                    

Informações Básicas da Extensão

Nome Reload Reload
ID fcofhoajikoooeongdbjbgnjpmgehgja
URL Oficial https://chromewebstore.google.com/detail/reload/fcofhoajikoooeongdbjbgnjpmgehgja
Descrição A simple Reload button
Tamanho do Arquivo 7.57 KB
Contagem de Instalações 1,852
Versão Atual 0.4
Última Atualização 2021-01-15
Data de Publicação 2016-11-19
Classificação 4.32/5 Total de 22 Avaliações
Desenvolvedor MK
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reload",
    "description": "A simple Reload button",
    "version": "0.4",
    "manifest_version": 2,
    "icons": {
        "16": "reload_16.png",
        "24": "reload_24.png",
        "32": "reload_32.png",
        "48": "reload_48.png",
        "128": "reload_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "reload_16.png",
            "24": "reload_24.png",
            "32": "reload_32.png"
        },
        "default_title": "Reload"
    }
}