Offline Cache

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

Cos'è Offline Cache?

Offline Cache è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Keeps files accessed for domains, so they can be loaded with no internet connection.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Offline Cache

Scarica i file di estensione Offline Cache in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Offline Cache Offline Cache
ID clnnmflgmblfoaneepnpadmelcjlckkb
URL Ufficiale https://chromewebstore.google.com/detail/offline-cache/clnnmflgmblfoaneepnpadmelcjlckkb
Descrizione Keeps files accessed for domains, so they can be loaded with no internet connection.
Dimensione del File 128 KB
Conteggio Installazioni 225
Versione Corrente 1.33
Ultimo Aggiornamento 2016-03-16
Data di Pubblicazione 2016-03-16
Valutazione 2.20/5 Totale 5 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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"
        ]
    }
}