Offline Cache

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

What is Offline Cache?

Offline Cache is a Chrome extension developed by Unknown, and its main feature is "Keeps files accessed for domains, so they can be loaded with no internet connection.".

Extension Screenshots

screenshot

Download Offline Cache Extension CRX File

Download Offline Cache extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Offline Cache Offline Cache
ID clnnmflgmblfoaneepnpadmelcjlckkb
Official URL https://chromewebstore.google.com/detail/offline-cache/clnnmflgmblfoaneepnpadmelcjlckkb
Description Keeps files accessed for domains, so they can be loaded with no internet connection.
File Size 128 KB
Installation Count 225
Current Version 1.33
Last Updated 2016-03-16
Publish Date 2016-03-16
Rating 2.20/5 Total 5 Ratings
Developer Unknown
Payment Type free
Supported Languages 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"
        ]
    }
}