Local Cache

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

Was ist Local Cache?

Local Cache ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Cache ajax requests to your local machine, making page loads faster and more predictable.".

Erweiterungsscreenshots

screenshot

Local Cache-Erweiterungs-CRX-Datei herunterladen

Laden Sie Local Cache-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Local Cache Local Cache
ID bpiehpmcnipgajgjdmalnpobnkfaanlj
Offizielle URL https://chromewebstore.google.com/detail/local-cache/bpiehpmcnipgajgjdmalnpobnkfaanlj
Beschreibung Cache ajax requests to your local machine, making page loads faster and more predictable.
Dateigröße 30.8 KB
Installationsanzahl 750
Aktuelle Version 1.0
Letztes Update 2018-01-02
Veröffentlichungsdatum 2018-01-01
Bewertung 4.40/5 Insgesamt 15 Bewertungen
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen 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",
        ""
    ]
}