Offline Cache

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

什么是Offline Cache?

Offline Cache是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Keeps files accessed for domains, so they can be loaded with no internet connection.”。

扩展截图

screenshot

下载Offline Cache扩展crx文件

下载Offline Cache扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        ]
    }
}