Local Cache

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

Τι είναι το Local Cache;

Το Local Cache είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "Cache ajax requests to your local machine, making page loads faster and more predictable.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Local Cache

Λήψη αρχείων επέκτασης Local Cache σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Local Cache Local Cache
ID bpiehpmcnipgajgjdmalnpobnkfaanlj
Επίσημο URL https://chromewebstore.google.com/detail/local-cache/bpiehpmcnipgajgjdmalnpobnkfaanlj
Περιγραφή Cache ajax requests to your local machine, making page loads faster and more predictable.
Μέγεθος Αρχείου 30.8 KB
Αριθμός Εγκαταστάσεων 750
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2018-01-02
Ημερομηνία Δημοσίευσης 2018-01-01
Αξιολόγηση 4.40/5 Συνολικά 15 Αξιολογήσεις
Προγραμματιστής Unknown
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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",
        ""
    ]
}