Local Cache

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

What is Local Cache?

Local Cache is a Chrome extension developed by Unknown, and its main feature is "Cache ajax requests to your local machine, making page loads faster and more predictable.".

Extension Screenshots

screenshot

Download Local Cache Extension CRX File

Download Local Cache extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Local Cache Local Cache
ID bpiehpmcnipgajgjdmalnpobnkfaanlj
Official URL https://chromewebstore.google.com/detail/local-cache/bpiehpmcnipgajgjdmalnpobnkfaanlj
Description Cache ajax requests to your local machine, making page loads faster and more predictable.
File Size 30.8 KB
Installation Count 750
Current Version 1.0
Last Updated 2018-01-02
Publish Date 2018-01-01
Rating 4.40/5 Total 15 Ratings
Developer Unknown
Payment Type free
Supported Languages 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",
        ""
    ]
}