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
公式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",
        ""
    ]
}