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