Reload on Focus

Reload a tab whenever it receives the focus.

Τι είναι το Reload on Focus;

Το Reload on Focus είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Stephen Blott, και η κύρια λειτουργία του είναι "Reload a tab whenever it receives the focus.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Reload on Focus

Λήψη αρχείων επέκτασης Reload on Focus σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Reload on Focus Reload on Focus
ID bhniofijcncimngchakbghfgfjijjchp
Επίσημο URL https://chromewebstore.google.com/detail/reload-on-focus/bhniofijcncimngchakbghfgfjijjchp
Περιγραφή Reload a tab whenever it receives the focus.
Μέγεθος Αρχείου 37.33 KB
Αριθμός Εγκαταστάσεων 93
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2019-01-05
Ημερομηνία Δημοσίευσης 2019-01-01
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Stephen Blott
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/smblott-github/chrome-reload-on-focus
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/smblott-github/chrome-reload-on-focus/issues
Υποστηριζόμενες Γλώσσες 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"
    }
}