Super-Cache

Helps in overriding cache policy

Что такое Super-Cache?

Super-Cache - это расширение Chrome, разработанное Tushar Mathur, и его основная функция - "Helps in overriding cache policy".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Super-Cache

Скачайте файлы расширений 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 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"
        ]
    }
}