Offline Cache

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

Co to jest Offline Cache?

Offline Cache to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Keeps files accessed for domains, so they can be loaded with no internet connection.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Offline Cache

Pobierz pliki rozszerzeń Offline Cache w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Offline Cache Offline Cache
ID clnnmflgmblfoaneepnpadmelcjlckkb
Oficjalny URL https://chromewebstore.google.com/detail/offline-cache/clnnmflgmblfoaneepnpadmelcjlckkb
Opis Keeps files accessed for domains, so they can be loaded with no internet connection.
Rozmiar pliku 128 KB
Liczba instalacji 225
Aktualna Wersja 1.33
Ostatnia Aktualizacja 2016-03-16
Data Publikacji 2016-03-16
Ocena 2.20/5 Łącznie 5 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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"
        ]
    }
}