Cached

Indicates if this response was fetched from disk cache

Vad är Cached?

Cached är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Indicates if this response was fetched from disk cache".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Cached-förlängningens CRX-fil

Ladda ner Cached-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Cached Cached
ID iennkaeaoklnkgiamabcmkjhahmdbelb
Officiell webbadress https://chromewebstore.google.com/detail/cached/iennkaeaoklnkgiamabcmkjhahmdbelb
Beskrivning Indicates if this response was fetched from disk cache
Filstorlek 6.15 KB
Antal Installationer 26
Aktuell Version 1.0
Senast Uppdaterad 2014-07-08
Publiceringsdatum 2014-07-07
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk 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"
}