Reload on Focus

Reload a tab whenever it receives the focus.

Hvad er Reload on Focus?

Reload on Focus er en Chrome-udvidelse udviklet af Stephen Blott, og dens hovedfunktion er "Reload a tab whenever it receives the focus.".

Udvidelsesskærmbilleder

screenshot

Download Reload on Focus-udvidelses-CRX-fil

Download Reload on Focus-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Reload on Focus Reload on Focus
ID bhniofijcncimngchakbghfgfjijjchp
Officiel URL https://chromewebstore.google.com/detail/reload-on-focus/bhniofijcncimngchakbghfgfjijjchp
Beskrivelse Reload a tab whenever it receives the focus.
Filstørrelse 37.33 KB
Antal Installationer 93
Nuværende Version 1.0
Senest Opdateret 2019-01-05
Udgivelsesdato 2019-01-01
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Stephen Blott
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/smblott-github/chrome-reload-on-focus
Hjælpeside-URL https://github.com/smblott-github/chrome-reload-on-focus/issues
Understøttede Sprog 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"
    }
}