Offline Cache

Keeps files accessed for domains, so they can be loaded with no internet connection.

Offline Cache क्या है?

Offline Cache Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Keeps files accessed for domains, so they can be loaded with no internet connection."।

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

screenshot

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

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

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

                        Offline Cache
==========

This extension assists in working in an offline environment. When active and recording, it records the requests made from a web page and maintains a cache of the responses. When active and replaying, it uses the responses stored in the cache to spoof/mock the response as if you were online.

The extension is configured to only be active on certain domains, which can be set from the extension's options page.                    

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

नाम Offline Cache Offline Cache
ID clnnmflgmblfoaneepnpadmelcjlckkb
आधिकारिक URL https://chromewebstore.google.com/detail/offline-cache/clnnmflgmblfoaneepnpadmelcjlckkb
विवरण Keeps files accessed for domains, so they can be loaded with no internet connection.
फ़ाइल का आकार 128 KB
स्थापना संख्या 225
वर्तमान संस्करण 1.33
अंतिम अपडेट 2016-03-16
प्रकाशन तिथि 2016-03-16
रेटिंग 2.20/5 कुल 5 रेटिंग्स
डेवलपर Unknown
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Offline Cache",
    "version": "1.33",
    "manifest_version": 2,
    "description": "Keeps files accessed for domains, so they can be loaded with no internet connection.",
    "browser_action": {
        "default_icon": "disabled.png",
        "default_title": "Toggle On\/Off",
        "default_popup": "switcheroo.html"
    },
    "permissions": [
        "unlimitedStorage",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "",
        "tabs"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "lib\/url.js",
            "Tabs.js",
            "Storage.js",
            "RulesService.js",
            "Cache.js",
            "MessageService.js",
            "RequestModerator.js",
            "IconStatus.js",
            "background.js"
        ]
    }
}