Easy Auto Refresh

Auto-refresh and auto-reload pages after any number of seconds.

Easy Auto Refresh क्या है?

Easy Auto Refresh https://www.dummysoftware.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Auto-refresh and auto-reload pages after any number of seconds."।

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

screenshot
screenshot
screenshot

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

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

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

                        Automatically reloads web pages after any number of seconds.

Features:
* Refresh pages after a set number of seconds.
* Set different delays per page or tab.
* Remembers your settings per page.
* Remembers web page scroll position.

Simply enter the number of seconds between reloads and click Start. You can specify different settings per tab. Preferences are saved per web page URL. The countdown pauses while typing. To stop refreshing of the tab, just click Stop.

Register your copy of Easy Auto Refresh to unlock advanced options, including:

* Save preferences per web page URL or per web site domain.
* Enable random countdown intervals.
* Choose specific times of day.
* Reload all tabs in the window.
* Automatically click a button, link, or element on the page.
* Navigate to a url from a list at each countdown interval.
* Show a notification and play a sound when text is found in the page.
* Display the last and next refresh time.
* Clear cache.
* Receive access to future enhancements.

Privacy Policy and Terms of Service

By installing this add-on, you agree to the following privacy policy http://dummysoftware.com/chrome-privacy.html                    

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

नाम Easy Auto Refresh Easy Auto Refresh
ID aabcgdmkeabbnleenpncegpcngjpnjkc
आधिकारिक URL https://chromewebstore.google.com/detail/easy-auto-refresh/aabcgdmkeabbnleenpncegpcngjpnjkc
विवरण Auto-refresh and auto-reload pages after any number of seconds.
फ़ाइल का आकार 53 KB
स्थापना संख्या 1,435,889
वर्तमान संस्करण 6.4
अंतिम अपडेट 2024-02-08
प्रकाशन तिथि 2019-08-09
रेटिंग 3.92/5 कुल 1971 रेटिंग्स
डेवलपर https://www.dummysoftware.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://www.dummysoftware.com/easy-auto-refresh.html
सहायता पृष्ठ URL http://www.dummysoftware.com/easy-auto-refresh.html
गोपनीयता नीति पृष्ठ URL http://dummysoftware.com/chrome-privacy.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Easy Auto Refresh",
    "version": "6.4",
    "manifest_version": 3,
    "description": "Auto-refresh and auto-reload pages after any number of seconds.",
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "action": {
        "default_icon": {
            "38": "images\/refresh-off-38.png"
        },
        "default_title": "Easy Auto Refresh",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "browsingData",
        "notifications",
        "storage",
        "scripting",
        "alarms"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/keypress.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "48": "images\/easy-auto-refresh-48x48.png",
        "128": "images\/easy-auto-refresh-128x128.png"
    }
}