Auto Reload IDT

Refresh automatically pages on a selected interval of seconds or specific time.

Auto Reload IDT क्या है?

Auto Reload IDT Giovani Silva द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Refresh automatically pages on a selected interval of seconds or specific time."।

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

screenshot

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

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

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

                        Refresh automatically pages on a selected interval of seconds or specific time.                    

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

नाम Auto Reload IDT Auto Reload IDT
ID fnkcgkngofnmodlbhmkfkloggnldomng
आधिकारिक URL https://chrome.google.com/webstore/detail/auto-reload-idt/fnkcgkngofnmodlbhmkfkloggnldomng
विवरण Refresh automatically pages on a selected interval of seconds or specific time.
फ़ाइल का आकार 47.58 KB
स्थापना संख्या 505
वर्तमान संस्करण 1.0.3
अंतिम अपडेट 2018-06-06
प्रकाशन तिथि 2018-06-06
रेटिंग 4.25/5 कुल 8 रेटिंग्स
डेवलपर Giovani Silva
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto Reload IDT",
    "description": "Refresh automatically pages on a selected interval of seconds or specific time.",
    "version": "1.0.3",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "background",
        "storage"
    ],
    "browser_action": {
        "default_icon": "reloadBtn.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts\/inicialization.js",
                "scripts\/jquery.js",
                "scripts\/script.js"
            ]
        }
    ],
    "icons": {
        "16": "reloadBtn.png",
        "48": "reloadBtn.png",
        "128": "reloadBtn.png"
    },
    "web_accessible_resources": [
        "popup.html"
    ]
}