Jenkins Status Tab
Show the status of a Jenkins build in the tab title.
Jenkins Status Tabคืออะไร?
Jenkins Status Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย christianvuerings และคุณลักษณะหลักของมันคือ "Show the status of a Jenkins build in the tab title."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Jenkins Status Tab
ดาวน์โหลดไฟล์ส่วนขยาย Jenkins Status Tab ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Show the status of a Jenkins build in the tab. Notes: - This plugin automatically enables auto refresh which may cause some heavy data usage.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | bpfcpdnjoengdphlnneoilmphaelapnn |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/jenkins-status-tab/bpfcpdnjoengdphlnneoilmphaelapnn |
คำอธิบาย | Show the status of a Jenkins build in the tab title. |
ขนาดไฟล์ | 30.56 KB |
จำนวนการติดตั้ง | 17 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2016-11-23 |
วันที่เผยแพร่ | 2016-11-23 |
คะแนน | 1.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | christianvuerings |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/christianvuerings/jenkins-status-tab |
URL หน้าช่วยเหลือ | https://github.com/christianvuerings/jenkins-status-tab/issues |
ภาษาที่รองรับ | 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:\/\/*\/" ] } |