Super-Cache
Helps in overriding cache policy
什么是Super-Cache?
Super-Cache是由Tushar Mathur开发的Chrome扩展程序,该扩展的主要功能是“Helps in overriding cache policy”。
扩展截图
下载Super-Cache扩展crx文件
下载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 |
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" ] } } |