Reload on Focus

Reload a tab whenever it receives the focus.

Cos'è Reload on Focus?

Reload on Focus è un'estensione di Chrome sviluppata da Stephen Blott, e la sua funzione principale è "Reload a tab whenever it receives the focus.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Reload on Focus

Scarica i file di estensione Reload on Focus 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

                        This is a very simple extension which (for pages matching a list of RegExps) reloads a tab each time it receives the focus.

It is intended for developers who work a bit, then revisit Chrome to view the fruit of their labors.                    

Informazioni di Base sull'Estensione

Nome Reload on Focus Reload on Focus
ID bhniofijcncimngchakbghfgfjijjchp
URL Ufficiale https://chromewebstore.google.com/detail/reload-on-focus/bhniofijcncimngchakbghfgfjijjchp
Descrizione Reload a tab whenever it receives the focus.
Dimensione del File 37.33 KB
Conteggio Installazioni 93
Versione Corrente 1.0
Ultimo Aggiornamento 2019-01-05
Data di Pubblicazione 2019-01-01
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Stephen Blott
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/smblott-github/chrome-reload-on-focus
URL della Pagina di Aiuto https://github.com/smblott-github/chrome-reload-on-focus/issues
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reload on Focus",
    "version": "1.0",
    "description": "Reload a tab whenever it receives the focus.",
    "minimum_chrome_version": "51.0",
    "permissions": [
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "rof-content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "rof-background.js"
        ]
    },
    "options_ui": {
        "page": "rof-options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": "icons\/rof-off-512x512.png"
    }
}