Pkgsrc Freeze Status
Shows status of Pkgsrc freeze
什么是Pkgsrc Freeze Status?
Pkgsrc Freeze Status是由Travis Paul开发的Chrome扩展程序,该扩展的主要功能是“Shows status of Pkgsrc freeze”。
扩展截图
下载Pkgsrc Freeze Status扩展crx文件
下载Pkgsrc Freeze Status扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Shows the status of a pkgsrc freeze. The typical orange Pkgsrc icon is shown if there is no freeze and a blue icon is shown if there is a freeze. Now there's no excuse to say you didn't know the Pkgsrc tree was frozen!
Technical Details:
This extension uses the chrome alarm API to make a HEAD request to
http://www.pkgsrc.org/is-a-freeze-on/ to see if there is currently a pkgsrc
freeze. If the ETag changes (or on the first request) we make a full GET and
parse the document body to see if there is a freeze. 扩展基本信息
| 名称 | |
| ID | hkjbalmocmojflppelljlnjpcmkbidph |
| 官方URL | https://chromewebstore.google.com/detail/pkgsrc-freeze-status/hkjbalmocmojflppelljlnjpcmkbidph |
| 简介 | Shows status of Pkgsrc freeze |
| 文件大小 | 41.21 KB |
| 安装次数 | 59 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2016-01-05 |
| 上架时间 | 2016-01-05 |
| 评分 | 3.00/5 共2次评分 |
| 开发者 | Travis Paul |
| 付费类型 | free |
| 扩展官网 | https://github.com/TravisPaul/crx-pkgsrc-freeze |
| 帮助页面URL | https://github.com/TravisPaul/crx-pkgsrc-freeze/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_name__",
"version": "1.0.0",
"manifest_version": 2,
"description": "__MSG_description__",
"default_locale": "en",
"icons": {
"16": "img\/16-pkgsrc.png",
"19": "img\/19-pkgsrc.png",
"48": "img\/48-pkgsrc.png",
"128": "img\/128-pkgsrc.png"
},
"browser_action": {
"default_icon": {
"19": "img\/19-default.png",
"38": "img\/38-default.png"
},
"default_title": "__MSG_status_unknown__"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"http:\/\/www.pkgsrc.org\/is-a-freeze-on\/",
"alarms"
],
"offline_enabled": false
} | |