Reload on Focus

Reload a tab whenever it receives the focus.

Reload on Focus क्या है?

Reload on Focus Stephen Blott द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reload a tab whenever it receives the focus."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Reload on Focus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}