Simple Auto Refresh

lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval

Simple Auto Refresh क्या है?

Simple Auto Refresh tobias.samesch द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval"।

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

screenshot
screenshot

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

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

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

                        lean and simple chrome extension to refresh websites after timeout. you can manage all tabs refresh intervals inside option page. User interaction resets interval.                    

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

नाम Simple Auto Refresh Simple Auto Refresh
ID jghdcjbendekbeopdlofjcnogeeemjgd
आधिकारिक URL https://chromewebstore.google.com/detail/simple-auto-refresh/jghdcjbendekbeopdlofjcnogeeemjgd
विवरण lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval
फ़ाइल का आकार 10.36 KB
स्थापना संख्या 18
वर्तमान संस्करण 1.0.3
अंतिम अपडेट 2021-02-18
प्रकाशन तिथि 2021-01-09
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर tobias.samesch
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple Auto Refresh",
    "version": "1.0.3",
    "description": "lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval",
    "permissions": [
        "declarativeContent",
        "storage",
        "alarms",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "24": "images\/ic_refresh_24px.png",
            "16": "images\/ic_refresh_24px.png",
            "32": "images\/ic_refresh_24px.png",
            "48": "images\/ic_refresh_24px.png",
            "128": "images\/ic_refresh_24px.png"
        }
    },
    "icons": {
        "24": "images\/ic_refresh_24px.png",
        "16": "images\/ic_refresh_24px.png",
        "32": "images\/ic_refresh_24px.png",
        "48": "images\/ic_refresh_24px.png",
        "128": "images\/ic_refresh_24px.png"
    },
    "manifest_version": 2
}