Super-Cache
Helps in overriding cache policy
¿Qué es Super-Cache?
Super-Cache es una extensión de Chrome desarrollada por Tushar Mathur, y su función principal es "Helps in overriding cache policy".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Super-Cache
Descarga archivos de extensión Super-Cache en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
| Nombre | |
| ID | fglobbnbihckpkodmeefhagijjcjnbeh |
| URL Oficial | https://chromewebstore.google.com/detail/super-cache/fglobbnbihckpkodmeefhagijjcjnbeh |
| Descripción | Helps in overriding cache policy |
| Tamaño del Archivo | 86.34 KB |
| Cantidad de Instalaciones | 1,762 |
| Versión Actual | 1.1.18 |
| Última Actualización | 2013-06-12 |
| Fecha de Publicación | 2013-06-12 |
| Calificación | 4.32/5 Total de 31 Calificaciones |
| Desarrollador | Tushar Mathur |
| Correo electrónico | tusharmath@gmail.com |
| Tipo de Pago | free |
| Sitio Web de la Extensión | https://github.com/tusharmath/Super-Cache |
| Idiomas Soportados | 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"
]
}
} | |