Local Cache

Cache ajax requests to your local machine, making page loads faster and more predictable.

Apa itu Local Cache?

Local Cache adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Cache ajax requests to your local machine, making page loads faster and more predictable.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Local Cache

Unduh file ekstensi Local 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

                        This is a lightweight, configurable extension that will cache responses for ajax requests to your machine, making future page loads faster and more reliable. This is great when you are demoing your ajax heavy website and want to ensure a smooth demo. Also, if you are a front end developer working with unstable or slow data backends, this extension will save you a ton of time and help you keep your momentum.                    

Informasi Dasar Ekstensi

Nama Local Cache Local Cache
ID bpiehpmcnipgajgjdmalnpobnkfaanlj
URL Resmi https://chromewebstore.google.com/detail/local-cache/bpiehpmcnipgajgjdmalnpobnkfaanlj
Deskripsi Cache ajax requests to your local machine, making page loads faster and more predictable.
Ukuran File 30.8 KB
Jumlah Instalasi 750
Versi Saat Ini 1.0
Terakhir Diperbarui 2018-01-02
Tanggal Publikasi 2018-01-01
Penilaian 4.40/5 Total 15 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Local Cache",
    "description": "Cache ajax requests to your local machine, making page loads faster and more predictable.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon.png"
    },
    "permissions": [
        "storage",
        ""
    ]
}