Cache Hit

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

Co to jest Cache Hit?

Cache Hit to rozszerzenie Chrome opracowane przez https://jjpmann.com, a jego główną funkcją jest „Shows if cache was HIT or MISS for the current page/resource.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Cache Hit

Pobierz pliki rozszerzeń Cache Hit w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Cache Hit Cache Hit
ID dpbikgdikjegmkpihbiokijjenonebga
Oficjalny URL https://chromewebstore.google.com/detail/cache-hit/dpbikgdikjegmkpihbiokijjenonebga
Opis Shows if cache was HIT or MISS for the current page/resource.
Rozmiar pliku 40.4 KB
Liczba instalacji 617
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2018-11-06
Data Publikacji 2018-11-06
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://jjpmann.com
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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:\/\/*\/*"
    ]
}