Reload on Focus

Reload a tab whenever it receives the focus.

Co je Reload on Focus?

Reload on Focus je rozšíření Chrome vyvinuté Stephen Blott, a jeho hlavní funkcí je „Reload a tab whenever it receives the focus.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Reload on Focus

Stáhněte si soubory rozšíření Reload on Focus ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Reload on Focus Reload on Focus
ID bhniofijcncimngchakbghfgfjijjchp
Oficiální URL https://chromewebstore.google.com/detail/reload-on-focus/bhniofijcncimngchakbghfgfjijjchp
Popis Reload a tab whenever it receives the focus.
Velikost souboru 37.33 KB
Počet instalací 93
Aktuální Verze 1.0
Poslední Aktualizace 2019-01-05
Datum Vydání 2019-01-01
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Stephen Blott
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/smblott-github/chrome-reload-on-focus
URL Stránky Nápovědy https://github.com/smblott-github/chrome-reload-on-focus/issues
Podporované Jazyky 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"
    }
}