Jenkins Notifier
Jenkins Notifier
Co to jest Jenkins Notifier?
Jenkins Notifier to rozszerzenie Chrome opracowane przez ctran, a jego główną funkcją jest „Jenkins Notifier”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Jenkins Notifier
Pobierz pliki rozszerzeń Jenkins Notifier w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
A chrome extension for your daily use of Jenkins CI(http://jenkins-ci.org/)
You can use this extension to be notified of a single job or a view.
This extension is open-sourced at https://github.com/ctran/chrome-jenkins-notifier. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ekdifefojaaiofhfbjfkapgfjdfhmbfb |
| Oficjalny URL | https://chromewebstore.google.com/detail/jenkins-notifier/ekdifefojaaiofhfbjfkapgfjdfhmbfb |
| Opis | Jenkins Notifier |
| Rozmiar pliku | 138 KB |
| Liczba instalacji | 34 |
| Aktualna Wersja | 0.1.0 |
| Ostatnia Aktualizacja | 2013-10-22 |
| Data Publikacji | 2013-10-22 |
| Deweloper | ctran |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/ctran/chrome-jenkins-notifier |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Jenkins Notifier",
"description": "Jenkins Notifier",
"manifest_version": 2,
"version": "0.1.0",
"icons": {
"128": "images\/icon.png",
"48": "images\/icon.png",
"16": "images\/icon.png"
},
"web_accessible_resources": [
"images\/blue.png",
"images\/red.png",
"images\/yellow.png",
"images\/grey.png"
],
"options_page": "options.html",
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": "images\/icon.png",
"default_title": "Jenkins Notifier",
"default_popup": "options.html"
},
"permissions": [
"background",
"notifications",
"http:\/\/*\/",
"https:\/\/*\/"
]
} | |