Local Cache

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

Local Cache là gì?

Local Cache là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Cache ajax requests to your local machine, making page loads faster and more predictable.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Local Cache

Tải xuống các tệp mở rộng Local Cache dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Local Cache Local Cache
ID bpiehpmcnipgajgjdmalnpobnkfaanlj
URL Chính Thức https://chromewebstore.google.com/detail/local-cache/bpiehpmcnipgajgjdmalnpobnkfaanlj
Mô tả Cache ajax requests to your local machine, making page loads faster and more predictable.
Kích Thước Tệp 30.8 KB
Số Lần Cài Đặt 750
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2018-01-02
Ngày Phát Hành 2018-01-01
Đánh Giá 4.40/5 Tổng số 15 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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",
        ""
    ]
}