Reload on Focus

Reload a tab whenever it receives the focus.

What is Reload on Focus?

Reload on Focus is a Chrome extension developed by Stephen Blott, and its main feature is "Reload a tab whenever it receives the focus.".

Extension Screenshots

screenshot

Download Reload on Focus Extension CRX File

Download Reload on Focus extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Reload on Focus Reload on Focus
ID bhniofijcncimngchakbghfgfjijjchp
Official URL https://chromewebstore.google.com/detail/reload-on-focus/bhniofijcncimngchakbghfgfjijjchp
Description Reload a tab whenever it receives the focus.
File Size 37.33 KB
Installation Count 93
Current Version 1.0
Last Updated 2019-01-05
Publish Date 2019-01-01
Rating 5.00/5 Total 2 Ratings
Developer Stephen Blott
Email [email protected]
Payment Type free
Extension Website https://github.com/smblott-github/chrome-reload-on-focus
Help Page URL https://github.com/smblott-github/chrome-reload-on-focus/issues
Supported Languages 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"
    }
}