Super-Cache

Helps in overriding cache policy

Super-Cache क्या है?

Super-Cache Tushar Mathur द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helps in overriding cache policy"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Super-Cache एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        ]
    }
}