Super-Cache

Helps in overriding cache policy

Super-Cache là gì?

Super-Cache là một tiện ích mở rộng Chrome được phát triển bởi Tushar Mathur, và tính năng chính của nó là "Helps in overriding cache policy".

Ả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 Super-Cache

Tải xuống các tệp mở rộng Super-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

                        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                    

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

Tên Super-Cache Super-Cache
ID fglobbnbihckpkodmeefhagijjcjnbeh
URL Chính Thức https://chromewebstore.google.com/detail/super-cache/fglobbnbihckpkodmeefhagijjcjnbeh
Mô tả Helps in overriding cache policy
Kích Thước Tệp 86.34 KB
Số Lần Cài Đặt 1,762
Phiên Bản Hiện Tại 1.1.18
Cập Nhật Lần Cuối 2013-06-12
Ngày Phát Hành 2013-06-12
Đánh Giá 4.32/5 Tổng số 31 Đánh Giá
Nhà Phát Triển Tushar Mathur
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tusharmath/Super-Cache
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}