Auto refresh

Automatically refresh the specified page, or only refresh the inactive TAB page.

Cos'è Auto refresh?

Auto refresh è un'estensione di Chrome sviluppata da idof, e la sua funzione principale è "Automatically refresh the specified page, or only refresh the inactive TAB page.".

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

                        Automatically refresh the specified page, or only refresh the inactive TAB page.                    

Informazioni di Base sull'Estensione

Nome Auto refresh Auto refresh
ID mljjfcmhgefdfgeomcaocgijloggnnjk
URL Ufficiale https://chrome.google.com/webstore/detail/auto-refresh/mljjfcmhgefdfgeomcaocgijloggnnjk
Descrizione Automatically refresh the specified page, or only refresh the inactive TAB page.
Dimensione del File 74.91 KB
Conteggio Installazioni 10,000
Versione Corrente 1.0
Ultimo Aggiornamento 2014-11-15
Data di Pubblicazione 2014-11-15
Valutazione 4.27/5 Totale 15 Valutazioni
Sviluppatore idof
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "background": {
        "page": "background.html",
        "script": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "128": "img\/on128.png",
        "64": "img\/on64.png"
    },
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "page_action": {
        "default_icon": "img\/off.png",
        "default_popup": "popup.html",
        "default_title": "__MSG_extName__"
    },
    "permissions": [
        "tabs",
        "browsingData",
        "webRequest",
        "webNavigation",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0"
}