Auto refresh

Automatically refresh the specified page, or only refresh the inactive TAB page.

Auto refresh क्या है?

Auto refresh idof द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically refresh the specified page, or only refresh the inactive TAB page."।

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

screenshot

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

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

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

                        Automatically refresh the specified page, or only refresh the inactive TAB page.                    

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

नाम Auto refresh Auto refresh
ID mljjfcmhgefdfgeomcaocgijloggnnjk
आधिकारिक URL https://chrome.google.com/webstore/detail/auto-refresh/mljjfcmhgefdfgeomcaocgijloggnnjk
विवरण Automatically refresh the specified page, or only refresh the inactive TAB page.
फ़ाइल का आकार 74.91 KB
स्थापना संख्या 10,000
वर्तमान संस्करण 1.0
अंतिम अपडेट 2014-11-15
प्रकाशन तिथि 2014-11-15
रेटिंग 4.27/5 कुल 15 रेटिंग्स
डेवलपर idof
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "background": {
        "page": "background.html",
        "script": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "128": "img\/on128.png",
        "64": "img\/on64.png"
    },
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "page_action": {
        "default_icon": "img\/off.png",
        "default_popup": "popup.html",
        "default_title": "__MSG_extName__"
    },
    "permissions": [
        "tabs",
        "browsingData",
        "webRequest",
        "webNavigation",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0"
}