Varnish Indicator (forked, improved)
A simple Google Chrome extension that shows if a page being served up via a Varnish web accelerator is fresh or not.
Varnish Indicator (forked, improved)とは何ですか?
Varnish Indicator (forked, improved)はbarciajoによって開発されたChromeの拡張機能で、その主な機能は「A simple Google Chrome extension that shows if a page being served up via a Varnish web accelerator is fresh or not.」です。
拡張機能のスクリーンショット
Varnish Indicator (forked, improved)拡張機能のCRXファイルをダウンロード
Varnish Indicator (forked, improved)拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is a fork from https://github.com/deizel/varnish-inspector, so he deserves much of the credit. I've improved this to work with different flavors of Varnish (the original had a dependency on the order of headers). In particular, I've been testing this with Fastly, a CDN that uses Varnish under the hood. 拡張機能の基本情報
| 名前 | |
| ID | cecjclajledipahfcbkcajegnbmpnbco |
| 公式URL | https://chromewebstore.google.com/detail/varnish-indicator-forked/cecjclajledipahfcbkcajegnbmpnbco |
| 説明 | A simple Google Chrome extension that shows if a page being served up via a Varnish web accelerator is fresh or not. |
| ファイルサイズ | 28.68 KB |
| インストール数 | 333 |
| 現在のバージョン | 1.0.0 |
| 最終更新日 | 2013-08-06 |
| 公開日 | 2013-08-06 |
| 評価 | 3.80/5 合計 5 レビュー |
| 開発者 | barciajo |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/jbarciauskas/varnish-inspector |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "A simple Google Chrome extension that shows if a page being served up via a Varnish web accelerator is fresh or not.",
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "img\/button_gray.png"
},
"icons": {
"16": "img\/icon_small.png",
"48": "img\/icon_medium.png",
"128": "img\/icon_large.png"
},
"manifest_version": 2,
"name": "Varnish Indicator (forked, improved)",
"permissions": [
"webRequest",
"webNavigation",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"minimum_chrome_version": "17",
"version": "1.0.0"
} | |