Varnish Indicator

A web extension that shows if the current page was served by the Varnish cache.

Varnish Indicator란 무엇입니까?

Varnish Indicator은(는) Scott Mebberson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A web extension that shows if the current page was served by the Varnish cache."입니다.

확장 프로그램 스크린샷

screenshot

Varnish Indicator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        An icon will advise if Varnish is being used, and if so, if the page was served from cache or not.

You should install this if you're a developer and want to quickly determine if a page was served from Varnish cache.

The icon has four status colors:

- Gray: the default, displayed when Varnish isn't detected.
- Blue: displays when Varnish is detected.
- Green: displays when the page was served from cache.
- Red: displays the when the page wasn't served from cache.

It looks for x-varnish and x-varnish-cache headers to detect Varnish. It can inspect both the x-varnish-cache (looking for hit and miss) and x-varnish (looking for two ids) headers to determine if a hit or miss took place.

The extension is open source and you can find more details at https://github.com/smebberson/varnish-indicator-extension.

Improvements and suggestions are welcomed :)

Updates

v1.1

- Adds support for duplicate varnish headers.                    

확장 프로그램 기본 정보

이름 Varnish Indicator Varnish Indicator
ID joengfmghhlcnbmikccgjiomgempdcpj
공식 URL https://chrome.google.com/webstore/detail/varnish-indicator/joengfmghhlcnbmikccgjiomgempdcpj
설명 A web extension that shows if the current page was served by the Varnish cache.
파일 크기 17 KB
설치 횟수 100
현재 버전 1.1
최근 업데이트 2020-11-04
출시 날짜 2020-07-04
평점 3.67/5 총 3 개의 평점
개발자 Scott Mebberson
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/smebberson/varnish-indicator-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Scott Mebberson",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "description": "A web extension that shows if the current page was served by the Varnish cache.",
    "homepage_url": "https:\/\/github.com\/smebberson\/varnish-indicator-extension",
    "icons": {
        "16": "img\/icon_small.png",
        "48": "img\/icon_medium.png",
        "128": "img\/icon_large.png"
    },
    "manifest_version": 2,
    "name": "Varnish Indicator",
    "page_action": {
        "default_icon": "img\/grey.png"
    },
    "permissions": [
        "webRequest",
        "webNavigation",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "version": "1.1"
}