Cached

Indicates if this response was fetched from disk cache

Что такое Cached?

Cached - это расширение Chrome, разработанное Unknown, и его основная функция - "Indicates if this response was fetched from disk cache".

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

screenshot
screenshot

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

Скачайте файлы расширений Cached в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Cached
======

On pages for which the requested URL in the title bar was fetched from the disk cache, an icon will be placed at the right hand side of the omnibox (url bar).  Clicking on that icon will bring you to the cache-view page for that url.

The source is very simple, and available at https://github.com/snyamathi/cached                    

Основная информация о расширении

Название Cached Cached
ID iennkaeaoklnkgiamabcmkjhahmdbelb
Официальный URL https://chromewebstore.google.com/detail/cached/iennkaeaoklnkgiamabcmkjhahmdbelb
Описание Indicates if this response was fetched from disk cache
Размер файла 6.15 KB
Количество установок 26
Текущая Версия 1.0
Последнее Обновление 2014-07-08
Дата публикации 2014-07-07
Рейтинг 1.00/5 Всего 1 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Suneil Nyamathi",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "description": "Indicates if this response was fetched from disk cache",
    "manifest_version": 2,
    "name": "Cached",
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Cached"
    },
    "permissions": [
        "",
        "tabs",
        "webRequest"
    ],
    "short_name": "Cached",
    "version": "1.0"
}