Offline Cache

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

Что такое Offline Cache?

Offline Cache - это расширение Chrome, разработанное Unknown, и его основная функция - "Keeps files accessed for domains, so they can be loaded with no internet connection.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Offline Cache

Скачайте файлы расширений 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"
        ]
    }
}