Reload on Focus

Reload a tab whenever it receives the focus.

Co to jest Reload on Focus?

Reload on Focus to rozszerzenie Chrome opracowane przez Stephen Blott, a jego główną funkcją jest „Reload a tab whenever it receives the focus.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Reload on Focus

Pobierz pliki rozszerzeń Reload on Focus w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Reload on Focus Reload on Focus
ID bhniofijcncimngchakbghfgfjijjchp
Oficjalny URL https://chromewebstore.google.com/detail/reload-on-focus/bhniofijcncimngchakbghfgfjijjchp
Opis Reload a tab whenever it receives the focus.
Rozmiar pliku 37.33 KB
Liczba instalacji 93
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-01-05
Data Publikacji 2019-01-01
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Stephen Blott
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/smblott-github/chrome-reload-on-focus
Adres URL Strony Pomocy https://github.com/smblott-github/chrome-reload-on-focus/issues
Obsługiwane Języki 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"
    }
}