Reload on Focus

Reload a tab whenever it receives the focus.

Qu'est-ce que Reload on Focus ?

Reload on Focus est une extension Chrome développée par Stephen Blott, et sa fonction principale est "Reload a tab whenever it receives the focus.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Reload on Focus

Téléchargez les fichiers d'extension Reload on Focus au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Reload on Focus Reload on Focus
ID bhniofijcncimngchakbghfgfjijjchp
URL Officiel https://chromewebstore.google.com/detail/reload-on-focus/bhniofijcncimngchakbghfgfjijjchp
Description Reload a tab whenever it receives the focus.
Taille du Fichier 37.33 KB
Nombre d'Installations 93
Version Actuelle 1.0
Dernière Mise à Jour 2019-01-05
Date de Publication 2019-01-01
Évaluation 5.00/5 Total 2 Évaluations
Développeur Stephen Blott
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/smblott-github/chrome-reload-on-focus
URL de la Page d'Aide https://github.com/smblott-github/chrome-reload-on-focus/issues
Langues Prises en Charge 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"
    }
}