Github Travis CI Builds
Chrome extension to add Travis CI builds tab to Github UI
Github Travis CI Buildsคืออะไร?
Github Travis CI Builds เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dan Sosedoff และคุณลักษณะหลักของมันคือ "Chrome extension to add Travis CI builds tab to Github UI"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Travis CI Builds
ดาวน์โหลดไฟล์ส่วนขยาย Github Travis CI Builds ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This chrome extension adds a new tab to Github that displays project builds from Travis CI. Supports viewing builds from public and private repositories.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | dphnhapafaimelkockemokgfdocadbdo |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/github-travis-ci-builds/dphnhapafaimelkockemokgfdocadbdo |
คำอธิบาย | Chrome extension to add Travis CI builds tab to Github UI |
ขนาดไฟล์ | 84.06 KB |
จำนวนการติดตั้ง | 16 |
เวอร์ชันปัจจุบัน | 1.1.4 |
อัปเดตครั้งล่าสุด | 2019-02-13 |
วันที่เผยแพร่ | 2019-02-13 |
ผู้พัฒนา | Dan Sosedoff |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/sosedoff/travis-github |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Travis CI Builds", "author": "Dan Sosedoff", "description": "Chrome extension to add Travis CI builds tab to Github UI", "version": "1.1.4", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "jquery.min.js", "mustache.min.js", "moment.min.js", "templates.js", "main.js" ], "css": [ "main.css" ], "run_at": "document_start" } ], "icons": { "19": "logo.png", "32": "logo.png", "48": "logo.png", "96": "logo.png", "128": "logo.png" }, "options_ui": { "page": "options.html", "chrome_style": true } } |