Highlight Me in Buildbot
Highlight your commits on buildbot pages.
Highlight Me in Buildbotคืออะไร?
Highlight Me in Buildbot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.bluestatic.org และคุณลักษณะหลักของมันคือ "Highlight your commits on buildbot pages."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Highlight Me in Buildbot
ดาวน์โหลดไฟล์ส่วนขยาย Highlight Me in Buildbot ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will inject itself into all build.chromium.org console pages. You specify your full committer email in the options page and then it will highlight all your commits as they're cycling on the waterfall.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Highlight Me in Buildbot |
ID | fkkgaddlippjidimcfbpllllclgnikdb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/highlight-me-in-buildbot/fkkgaddlippjidimcfbpllllclgnikdb |
คำอธิบาย | Highlight your commits on buildbot pages. |
ขนาดไฟล์ | 38.77 KB |
จำนวนการติดตั้ง | 186 |
เวอร์ชันปัจจุบัน | 1.4 |
อัปเดตครั้งล่าสุด | 2013-05-01 |
วันที่เผยแพร่ | 2013-05-01 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://www.bluestatic.org |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://build.chromium.org/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Highlight Me in Buildbot", "version": "1.4", "manifest_version": 2, "description": "Highlight your commits on buildbot pages.", "icons": { "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/build.chromium.org\/*", "http:\/\/chromegw.corp.google.com\/*", "http:\/\/build.webkit.org\/console*", "http:\/\/chromium-build-master.appspot.com\/*", "https:\/\/chromium-build-master.appspot.com\/*", "http:\/\/chromium-build.appspot.com\/*", "https:\/\/chromium-build.appspot.com\/*" ], "css": [ "highlight-me.css" ], "js": [ "highlight-me.js" ] } ], "options_page": "options.html" } |