GitHub Monitor
Get notifications for activity on your public and private repositories.
Hvad er GitHub Monitor?
GitHub Monitor er en Chrome-udvidelse udviklet af gmoz22, og dens hovedfunktion er "Get notifications for activity on your public and private repositories.".
Udvidelsesskærmbilleder
Download GitHub Monitor-udvidelses-CRX-fil
Download GitHub Monitor-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
- 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æggende oplysninger om udvidelsen
| Navn | |
| ID | bbikjjbpphkhejhalmjebhopgohlflag |
| Officiel URL | https://chromewebstore.google.com/detail/github-monitor/bbikjjbpphkhejhalmjebhopgohlflag |
| Beskrivelse | Get notifications for activity on your public and private repositories. |
| Filstørrelse | 36.81 KB |
| Antal Installationer | 45 |
| Nuværende Version | 0.1.1 |
| Senest Opdateret | 2014-02-19 |
| Udgivelsesdato | 2014-02-19 |
| Udvikler | gmoz22 |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/gmoz22/github-monitor-chromeext |
| Hjælpeside-URL | https://github.com/gmoz22/github-monitor-chromeext |
| Understøttede Sprog | 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"
} | |