Jenkins Status Tab
Show the status of a Jenkins build in the tab title.
Apa itu Jenkins Status Tab?
Jenkins Status Tab adalah ekstensi Chrome yang dikembangkan oleh christianvuerings, dan fitur utamanya adalah "Show the status of a Jenkins build in the tab title.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Jenkins Status Tab
Unduh file ekstensi Jenkins Status Tab dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Show the status of a Jenkins build in the tab. Notes: - This plugin automatically enables auto refresh which may cause some heavy data usage.
Informasi Dasar Ekstensi
Nama | |
ID | bpfcpdnjoengdphlnneoilmphaelapnn |
URL Resmi | https://chrome.google.com/webstore/detail/jenkins-status-tab/bpfcpdnjoengdphlnneoilmphaelapnn |
Deskripsi | Show the status of a Jenkins build in the tab title. |
Ukuran File | 30.56 KB |
Jumlah Instalasi | 17 |
Versi Saat Ini | 0.0.1 |
Terakhir Diperbarui | 2016-11-23 |
Tanggal Publikasi | 2016-11-23 |
Penilaian | 1.00/5 Total 1 Penilaian |
Pengembang | christianvuerings |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/christianvuerings/jenkins-status-tab |
URL Halaman Bantuan | https://github.com/christianvuerings/jenkins-status-tab/issues |
Bahasa yang Didukung | 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:\/\/*\/" ] } |