Jenkins Status Tab
Show the status of a Jenkins build in the tab title.
Co to jest Jenkins Status Tab?
Jenkins Status Tab to rozszerzenie Chrome opracowane przez christianvuerings, a jego główną funkcją jest „Show the status of a Jenkins build in the tab title.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Jenkins Status Tab
Pobierz pliki rozszerzeń Jenkins Status Tab 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
Show the status of a Jenkins build in the tab.
Notes:
- This plugin automatically enables auto refresh which may cause some heavy data usage. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | bpfcpdnjoengdphlnneoilmphaelapnn |
| Oficjalny URL | https://chrome.google.com/webstore/detail/jenkins-status-tab/bpfcpdnjoengdphlnneoilmphaelapnn |
| Opis | Show the status of a Jenkins build in the tab title. |
| Rozmiar pliku | 30.56 KB |
| Liczba instalacji | 17 |
| Aktualna Wersja | 0.0.1 |
| Ostatnia Aktualizacja | 2016-11-23 |
| Data Publikacji | 2016-11-23 |
| Ocena | 1.00/5 Łącznie 1 Oceny |
| Deweloper | christianvuerings |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/christianvuerings/jenkins-status-tab |
| Adres URL Strony Pomocy | https://github.com/christianvuerings/jenkins-status-tab/issues |
| Obsługiwane Języki | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Jenkins Status Tab",
"description": "Show the status of a Jenkins build in the tab title.",
"version": "0.0.1",
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"icons.js",
"execute.js"
]
}
],
"icons": {
"32": "32.png",
"64": "64.png",
"128": "128.png"
},
"browser_action": {
"default_title": "Make this page blue"
},
"permissions": [
"tabs",
"activeTab",
"https:\/\/*\/",
"http:\/\/*\/"
]
} | |