Cache Hit

Shows if cache was HIT or MISS for the current page/resource.

Vad är Cache Hit?

Cache Hit är en Chrome-tillägg utvecklad av https://jjpmann.com, och dess huvudfunktion är "Shows if cache was HIT or MISS for the current page/resource.".

Tilläggsskärmbilder

screenshot

Ladda ner Cache Hit-förlängningens CRX-fil

Ladda ner Cache Hit-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

                        Shows if cache was HIT or MISS for the current page/resource.

Will check the following headers to determine a match.

Proxy:
* x-cache
* x-fastcgi-cache
* varnish-cache
* cf-cache-status

CMS:
* x-drupal-cache
* x-ee-cache                    

Grundläggande Information om Tillägg

Namn Cache Hit Cache Hit
ID dpbikgdikjegmkpihbiokijjenonebga
Officiell webbadress https://chromewebstore.google.com/detail/cache-hit/dpbikgdikjegmkpihbiokijjenonebga
Beskrivning Shows if cache was HIT or MISS for the current page/resource.
Filstorlek 40.4 KB
Antal Installationer 617
Aktuell Version 1.1.1
Senast Uppdaterad 2018-11-06
Publiceringsdatum 2018-11-06
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://jjpmann.com
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cache Hit",
    "description": "Shows if cache was HIT or MISS for the current page\/resource.",
    "author": "Jerry Price",
    "version": "1.1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html",
        "default_title": "checking...."
    },
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "permissions": [
        "webRequest",
        "webNavigation",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}