Local Cache

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

Qu'est-ce que Local Cache ?

Local Cache est une extension Chrome développée par Unknown, et sa fonction principale est "Cache ajax requests to your local machine, making page loads faster and more predictable.".

Captures d'Écran de l'Extension

screenshot

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

Téléchargez les fichiers d'extension Local 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

                        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.                    

Informations de Base sur l'Extension

Nom Local Cache Local Cache
ID bpiehpmcnipgajgjdmalnpobnkfaanlj
URL Officiel https://chromewebstore.google.com/detail/local-cache/bpiehpmcnipgajgjdmalnpobnkfaanlj
Description Cache ajax requests to your local machine, making page loads faster and more predictable.
Taille du Fichier 30.8 KB
Nombre d'Installations 750
Version Actuelle 1.0
Dernière Mise à Jour 2018-01-02
Date de Publication 2018-01-01
Évaluation 4.40/5 Total 15 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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",
        ""
    ]
}