Offline Cache

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

Apa itu Offline Cache?

Offline Cache adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Keeps files accessed for domains, so they can be loaded with no internet connection.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Offline Cache

Unduh file ekstensi Offline Cache dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Offline Cache Offline Cache
ID clnnmflgmblfoaneepnpadmelcjlckkb
URL Resmi https://chromewebstore.google.com/detail/offline-cache/clnnmflgmblfoaneepnpadmelcjlckkb
Deskripsi Keeps files accessed for domains, so they can be loaded with no internet connection.
Ukuran File 128 KB
Jumlah Instalasi 225
Versi Saat Ini 1.33
Terakhir Diperbarui 2016-03-16
Tanggal Publikasi 2016-03-16
Penilaian 2.20/5 Total 5 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
        ]
    }
}