Auto Refresh

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

Cos'è Auto Refresh?

Auto Refresh è un'estensione di Chrome sviluppata da https://stni.pw, e la sua funzione principale è "Reload the web page automatically in the time interval that you want.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Auto Refresh

Scarica i file di estensione Auto Refresh 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 web pages automatically in the time interval that you want.

A Shitian Ni Project                    

Informazioni di Base sull'Estensione

Nome Auto Refresh Auto Refresh
ID omcjgdddgjlioknfggaelopggehgfcea
URL Ufficiale https://chromewebstore.google.com/detail/auto-refresh/omcjgdddgjlioknfggaelopggehgfcea
Descrizione Reload the web page automatically in the time interval that you want.
Dimensione del File 43.26 KB
Conteggio Installazioni 6,749
Versione Corrente 1.0.6
Ultimo Aggiornamento 2016-06-26
Data di Pubblicazione 2016-06-26
Valutazione 3.00/5 Totale 4 Valutazioni
Sviluppatore https://stni.pw
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}