Offline Cache

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

Qu'est-ce que Offline Cache ?

Offline Cache est une extension Chrome développée par Unknown, et sa fonction principale est "Keeps files accessed for domains, so they can be loaded with no internet connection.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Offline Cache

Téléchargez les fichiers d'extension Offline Cache au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Offline Cache Offline Cache
ID clnnmflgmblfoaneepnpadmelcjlckkb
URL Officiel https://chromewebstore.google.com/detail/offline-cache/clnnmflgmblfoaneepnpadmelcjlckkb
Description Keeps files accessed for domains, so they can be loaded with no internet connection.
Taille du Fichier 128 KB
Nombre d'Installations 225
Version Actuelle 1.33
Dernière Mise à Jour 2016-03-16
Date de Publication 2016-03-16
Évaluation 2.20/5 Total 5 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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"
        ]
    }
}