Reload on Focus

Reload a tab whenever it receives the focus.

¿Qué es Reload on Focus?

Reload on Focus es una extensión de Chrome desarrollada por Stephen Blott, y su función principal es "Reload a tab whenever it receives the focus.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Reload on Focus

Descarga archivos de extensión Reload on Focus en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Reload on Focus Reload on Focus
ID bhniofijcncimngchakbghfgfjijjchp
URL Oficial https://chromewebstore.google.com/detail/reload-on-focus/bhniofijcncimngchakbghfgfjijjchp
Descripción Reload a tab whenever it receives the focus.
Tamaño del Archivo 37.33 KB
Cantidad de Instalaciones 93
Versión Actual 1.0
Última Actualización 2019-01-05
Fecha de Publicación 2019-01-01
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Stephen Blott
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/smblott-github/chrome-reload-on-focus
URL de la Página de Ayuda https://github.com/smblott-github/chrome-reload-on-focus/issues
Idiomas Soportados 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"
    }
}