Local Cache

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

Hvad er Local Cache?

Local Cache er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Cache ajax requests to your local machine, making page loads faster and more predictable.".

Udvidelsesskærmbilleder

screenshot

Download Local Cache-udvidelses-CRX-fil

Download Local Cache-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Local Cache Local Cache
ID bpiehpmcnipgajgjdmalnpobnkfaanlj
Officiel URL https://chromewebstore.google.com/detail/local-cache/bpiehpmcnipgajgjdmalnpobnkfaanlj
Beskrivelse Cache ajax requests to your local machine, making page loads faster and more predictable.
Filstørrelse 30.8 KB
Antal Installationer 750
Nuværende Version 1.0
Senest Opdateret 2018-01-02
Udgivelsesdato 2018-01-01
Bedømmelse 4.40/5 Samlet 15 Bedømmelser
Udvikler Unknown
Betalingsmetode free
Understøttede Sprog 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",
        ""
    ]
}