Auto Refresh

Reload the web page automatically in the time interval that you want.

O que é Auto Refresh?

Auto Refresh é uma extensão do Chrome desenvolvida por https://stni.pw, e sua principal característica é "Reload the web page automatically in the time interval that you want.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Auto Refresh

Baixe arquivos de extensão Auto Refresh 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 web pages automatically in the time interval that you want.

A Shitian Ni Project                    

Informações Básicas da Extensão

Nome Auto Refresh Auto Refresh
ID omcjgdddgjlioknfggaelopggehgfcea
URL Oficial https://chromewebstore.google.com/detail/auto-refresh/omcjgdddgjlioknfggaelopggehgfcea
Descrição Reload the web page automatically in the time interval that you want.
Tamanho do Arquivo 43.26 KB
Contagem de Instalações 6,749
Versão Atual 1.0.6
Última Atualização 2016-06-26
Data de Publicação 2016-06-26
Classificação 3.00/5 Total de 4 Avaliações
Desenvolvedor https://stni.pw
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Refresh",
    "short_name": "Refresh",
    "version": "1.0.6",
    "manifest_version": 2,
    "description": "Reload the web page automatically in the time interval that you want.",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js"
        ]
    },
    "permissions": [
        "",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ]
        }
    ]
}