Just Refresh

One-click toggle auto-refresh

Just Refresh क्या है?

Just Refresh claxtons4 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "One-click toggle auto-refresh"।

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

screenshot

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

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

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

                        Just Refresh is an open source extension that automatically refreshes a page on a set interval with one click.

Change the interval by right clicking the icon, and selecting "Options". You can auto refresh as many tabs are you like.

If you like the extension, please leave a review and support me here:
https://ko-fi.com/claxtastic

New in v1.2: Apply settings to any URL from a given domain

You can view the source of the extension here:
https://github.com/Claxtastic/just-refresh

And find my other projects here:
https://github.com/Claxtastic

The extension was designed overall to be minimal and straight to the point. It requires two permissions: 
1. activeTab: To access the current tab and start the refresh loop.
2. storage: To locally store the current refresh interval.                    

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

नाम Just Refresh Just Refresh
ID pgaimkehoiabhliejchbnamlboniofpd
आधिकारिक URL https://chromewebstore.google.com/detail/just-refresh/pgaimkehoiabhliejchbnamlboniofpd
विवरण One-click toggle auto-refresh
फ़ाइल का आकार 44.83 KB
स्थापना संख्या 1,000
वर्तमान संस्करण 1.2
अंतिम अपडेट 2021-03-06
प्रकाशन तिथि 2019-07-23
रेटिंग 4.43/5 कुल 7 रेटिंग्स
डेवलपर claxtons4
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Claxtastic/just-refresh
सहायता पृष्ठ URL https://ko-fi.com/claxtastic
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Just Refresh",
    "version": "1.2",
    "description": "One-click toggle auto-refresh",
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": [],
    "commands": {
        "toggle-refresh": {
            "suggested_key": {
                "default": "Alt+R",
                "mac": "Alt+R"
            },
            "description": "Toggle refresh with keybind"
        }
    },
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "images\/just_refresh128.png"
    },
    "manifest_version": 2
}