Super-Cache

Helps in overriding cache policy

Qu'est-ce que Super-Cache ?

Super-Cache est une extension Chrome développée par Tushar Mathur, et sa fonction principale est "Helps in overriding cache policy".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Super-Cache

Téléchargez les fichiers d'extension Super-Cache au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Super-Cache Super-Cache
ID fglobbnbihckpkodmeefhagijjcjnbeh
URL Officiel https://chromewebstore.google.com/detail/super-cache/fglobbnbihckpkodmeefhagijjcjnbeh
Description Helps in overriding cache policy
Taille du Fichier 86.34 KB
Nombre d'Installations 1,762
Version Actuelle 1.1.18
Dernière Mise à Jour 2013-06-12
Date de Publication 2013-06-12
Évaluation 4.32/5 Total 31 Évaluations
Développeur Tushar Mathur
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/tusharmath/Super-Cache
Langues Prises en Charge 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"
        ]
    }
}