Auto Refresh

Auto refresh for develop

Cos'è Auto Refresh?

Auto Refresh è un'estensione di Chrome sviluppata da selvn, e la sua funzione principale è "Auto refresh for develop".

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

                        auto refresh your page, according to a url which return true to refresh or false not to refresh.
It is useful when you are writing html. config a page to monitor files change. If changed, this plugin will auto refresh.                    

Informazioni di Base sull'Estensione

Nome Auto Refresh Auto Refresh
ID ghhlhgfnlmfajjfppidbifgdnoheojon
URL Ufficiale https://chrome.google.com/webstore/detail/auto-refresh/ghhlhgfnlmfajjfppidbifgdnoheojon
Descrizione Auto refresh for develop
Dimensione del File 141 KB
Conteggio Installazioni 71
Versione Corrente 1
Ultimo Aggiornamento 2013-06-23
Data di Pubblicazione 2013-06-23
Valutazione 2.50/5 Totale 2 Valutazioni
Sviluppatore selvn
Tipo di Pagamento free
Lingue Supportate zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Refresh",
    "version": "1",
    "manifest_version": 2,
    "description": "Auto refresh for develop",
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-1.8.3.min.js",
                "script.js"
            ],
            "matches": [
                "",
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}