Reload on Focus

Reload a tab whenever it receives the focus.

Vad är Reload on Focus?

Reload on Focus är en Chrome-tillägg utvecklad av Stephen Blott, och dess huvudfunktion är "Reload a tab whenever it receives the focus.".

Tilläggsskärmbilder

screenshot

Ladda ner Reload on Focus-förlängningens CRX-fil

Ladda ner Reload on Focus-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Reload on Focus Reload on Focus
ID bhniofijcncimngchakbghfgfjijjchp
Officiell webbadress https://chromewebstore.google.com/detail/reload-on-focus/bhniofijcncimngchakbghfgfjijjchp
Beskrivning Reload a tab whenever it receives the focus.
Filstorlek 37.33 KB
Antal Installationer 93
Aktuell Version 1.0
Senast Uppdaterad 2019-01-05
Publiceringsdatum 2019-01-01
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Stephen Blott
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/smblott-github/chrome-reload-on-focus
Hjälpsida URL https://github.com/smblott-github/chrome-reload-on-focus/issues
Stödda Språk 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"
    }
}