Super-Cache

Helps in overriding cache policy

Super-Cacheคืออะไร?

Super-Cache เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tushar Mathur และคุณลักษณะหลักของมันคือ "Helps in overriding cache policy"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Super-Cache

ดาวน์โหลดไฟล์ส่วนขยาย Super-Cache ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Control caching behavior on the client side!

UPDATE:
Bugs fixed as reported by M-Ubaid Raza, thanks for informing.


Features

1. Override caching policy that has been set on the server.
Select a host on which the caching is required and all requests from a page with that host will be cached.
2. Caching of static content which are on a different host will also be cahed (read Note for further explanation)

Note: say you have a site example.com on which you have set a caching policy thru the extension. Now if the any page on example.com links to external scripts and sites which are on a different domain such as static.example.com or ajax.googleapis.com, the extension will automatically apply the same caching behavior as that of example.com

Source Code
https://github.com/tusharmath/Super-Cache                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Super-Cache Super-Cache
ID fglobbnbihckpkodmeefhagijjcjnbeh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/super-cache/fglobbnbihckpkodmeefhagijjcjnbeh
คำอธิบาย Helps in overriding cache policy
ขนาดไฟล์ 86.34 KB
จำนวนการติดตั้ง 1,762
เวอร์ชันปัจจุบัน 1.1.18
อัปเดตครั้งล่าสุด 2013-06-12
วันที่เผยแพร่ 2013-06-12
คะแนน 4.32/5 รวมทั้งหมด 31 คะแนน
ผู้พัฒนา Tushar Mathur
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/tusharmath/Super-Cache
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Super-Cache",
    "manifest_version": 2,
    "version": "1.1.18",
    "description": "Helps in overriding cache policy",
    "permissions": [
        "*:\/\/*\/*",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "tabs"
    ],
    "page_action": {
        "default_title": "Super Cache",
        "default_icon": "snapshots\/cache_black.png",
        "default_popup": "popup\/index.html"
    },
    "background": {
        "scripts": [
            "background\/bg.min.js"
        ]
    }
}