Auto Reloader

Refresh matching tab(s) after a period of inactivity.

Auto Reloader क्या है?

Auto Reloader BestMile द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Refresh matching tab(s) after a period of inactivity."।

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

screenshot

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

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

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

                        Automatically reloads the tab(s) matching a given (partial) URL after a configurable duration of inactivity, with the possibility to show a confirm dialog before reloading.

The reload delay is activated by the first click on the page, so the reload will not be triggered if no click happens on the page after it (re)loaded. For this scenario, a second reload delay can be configured that will reload the page without confirmation event without a first activity on the page.

Features

* Prevents reloading the page if someone is actively using it (timeout reset on click)
* Display a confirmation dialog from the current page (if available) before reloading the page
* Allows to set a second delay that will reload the page without confirmation
* Checks for a css class after the page has loaded and forces a reload if not found (used the check that the page loaded successfully)
* Can send a heartbeat post to a given remote server on each load of the target page
* ALL ABOVE OPTIONS ARE CONFIGURABLE AND CAN BE DISABLED.                    

एक्सटेंशन की मूल जानकारी

नाम Auto Reloader Auto Reloader
ID pdbciklhbdhljpodlfcnhhplipgibeod
आधिकारिक URL https://chrome.google.com/webstore/detail/auto-reloader/pdbciklhbdhljpodlfcnhhplipgibeod
विवरण Refresh matching tab(s) after a period of inactivity.
फ़ाइल का आकार 17.76 KB
स्थापना संख्या 434
वर्तमान संस्करण 1.3
अंतिम अपडेट 2016-08-10
प्रकाशन तिथि 2016-08-10
रेटिंग 3.67/5 कुल 3 रेटिंग्स
डेवलपर BestMile
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto Reloader",
    "description": "Refresh matching tab(s) after a period of inactivity.",
    "version": "1.3",
    "homepage_url": "https:\/\/github.com\/BestMile\/auto-reloader",
    "minimum_chrome_version": "50",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    }
}