Local Cache

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

什麼是Local Cache?

Local Cache是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Cache ajax requests to your local machine, making page loads faster and more predictable.”。

擴展截圖

screenshot

下載Local Cache擴展crx文件

下載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
官方網址 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",
        ""
    ]
}