GitHub & Travis CI - Enhanced Status
Enhances the Travis CI status on GitHub pull request pages.
GitHub & Travis CI - Enhanced Status là gì?
GitHub & Travis CI - Enhanced Status là một tiện ích mở rộng Chrome được phát triển bởi Dominique Müller, và tính năng chính của nó là "Enhances the Travis CI status on GitHub pull request pages.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng GitHub & Travis CI - Enhanced Status
Tải xuống các tệp mở rộng GitHub & Travis CI - Enhanced Status dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
While the integration between GitHub and Travis CI works like a charm, it only provides minimal build information on Pull Request pages. In order to see further build information, developers always have to jump into the Travis CI web application. This extension enhances the build status by also showing the build jobs in the UI, including the real-time status and runtime. Plus, it provides a link for directly jumping into a build job log in Travis CI. FEEDBACK & BUGS Feel free to open an issues on GitHub if you encounter any bug, or have an idea for some enhancement / a new feature: https://github.com/dominique-mueller/web-extension-github-travis-status/issues LEGAL NOTICE This extension is my personal project, and is thus not an official product of GitHub and / or Travis CI.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GitHub & Travis CI - Enhanced Status |
ID | feamoaieedkmfkeiaplidoingcflbggm |
URL Chính Thức | https://chromewebstore.google.com/detail/github-travis-ci-enhanced/feamoaieedkmfkeiaplidoingcflbggm |
Mô tả | Enhances the Travis CI status on GitHub pull request pages. |
Kích Thước Tệp | 20.03 KB |
Số Lần Cài Đặt | 27 |
Phiên Bản Hiện Tại | 1.1.2 |
Cập Nhật Lần Cuối | 2018-05-05 |
Ngày Phát Hành | 2018-05-05 |
Nhà Phát Triển | Dominique Müller |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/dominique-mueller |
URL Trang Trợ Giúp | https://github.com/dominique-mueller/web-extension-github-travis-status/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub & Travis CI - Enhanced Status", "description": "Enhances the Travis CI status on GitHub pull request pages.", "version": "1.1.2", "homepage_url": "https:\/\/github.com\/dominique-mueller\/web-extension-github-travis-status", "manifest_version": 2, "icons": { "16": "assets\/icon-16.png", "48": "assets\/icon-48.png", "128": "assets\/icon-128.png" }, "permissions": [ "https:\/\/github.com\/*", "tabs", "webNavigation" ], "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "src\/content_script.js", "src\/vendor.js" ], "css": [ "src\/content_script.css" ] } ] } |