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 |
| 官方網址 | 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"
} | |