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