GitHub Monitor
Get notifications for activity on your public and private repositories.
什么是GitHub Monitor?
GitHub Monitor是由gmoz22开发的Chrome扩展程序,该扩展的主要功能是“Get notifications for activity on your public and private repositories.”。
扩展截图
下载GitHub Monitor扩展crx文件
下载GitHub Monitor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
- Displays notifications of other contributors' activity on public and private repositories you contribute to
- Handles Pushes, Releases and Comments
Contribute at https://github.com/gmoz22/github-monitor-chromeext 扩展基本信息
| 名称 | |
| ID | bbikjjbpphkhejhalmjebhopgohlflag |
| 官方URL | https://chromewebstore.google.com/detail/github-monitor/bbikjjbpphkhejhalmjebhopgohlflag |
| 简介 | Get notifications for activity on your public and private repositories. |
| 文件大小 | 36.81 KB |
| 安装次数 | 45 |
| 当前版本 | 0.1.1 |
| 更新时间 | 2014-02-19 |
| 上架时间 | 2014-02-19 |
| 开发者 | gmoz22 |
| 付费类型 | free |
| 扩展官网 | https://github.com/gmoz22/github-monitor-chromeext |
| 帮助页面URL | https://github.com/gmoz22/github-monitor-chromeext |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub Monitor",
"short_name": "GitHub Monitor",
"description": "Get notifications for activity on your public and private repositories.",
"author": "Steve Oziel",
"version": "0.1.1",
"manifest_version": 2,
"icons": {
"128": "img\/icon_128.png",
"64": "img\/icon_64.png",
"24": "img\/icon_24.png",
"16": "img\/icon_16.png"
},
"permissions": [
"storage",
"notifications",
"https:\/\/api.github.com\/"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": {
"19": "img\/icon_19.png",
"38": "img\/icon_38.png"
},
"default_title": "Options",
"default_popup": "options.html"
},
"options_page": "options.html"
} | |