GitHub Monitor
Get notifications for activity on your public and private repositories.
Vad är GitHub Monitor?
GitHub Monitor är en Chrome-tillägg utvecklad av gmoz22, och dess huvudfunktion är "Get notifications for activity on your public and private repositories.".
Tilläggsskärmbilder
Ladda ner GitHub Monitor-förlängningens CRX-fil
Ladda ner GitHub Monitor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
- 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 Grundläggande Information om Tillägg
| Namn | |
| ID | bbikjjbpphkhejhalmjebhopgohlflag |
| Officiell webbadress | https://chromewebstore.google.com/detail/github-monitor/bbikjjbpphkhejhalmjebhopgohlflag |
| Beskrivning | Get notifications for activity on your public and private repositories. |
| Filstorlek | 36.81 KB |
| Antal Installationer | 45 |
| Aktuell Version | 0.1.1 |
| Senast Uppdaterad | 2014-02-19 |
| Publiceringsdatum | 2014-02-19 |
| Utvecklare | gmoz22 |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/gmoz22/github-monitor-chromeext |
| Hjälpsida URL | https://github.com/gmoz22/github-monitor-chromeext |
| Stödda Språk | 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"
} | |