Github Travis Stat
Display travis-ci build status and time chart, with status icon next to the project name on github.
Github Travis Stat là gì?
Github Travis Stat là một tiện ích mở rộng Chrome được phát triển bởi wsywj61, và tính năng chính của nó là "Display travis-ci build status and time chart, with status icon next to the project name on github.".
Ả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 Stat
Tải xuống các tệp mở rộng Github Travis Stat 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
This is an extension to display travis-ci status for repos in github. There is an interesting chart, which shows that recent 10 times build status and build duration changes. 该插件主要用于在github页面上显示对应仓库的travis-ci build状态,并使用图形化(图表)的形式展示近10次build的状态和时间变化。
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Github Travis Stat |
ID | ekkfhiophiaakmeppcnkblpbbjlnlnmh |
URL Chính Thức | https://chromewebstore.google.com/detail/github-travis-stat/ekkfhiophiaakmeppcnkblpbbjlnlnmh |
Mô tả | Display travis-ci build status and time chart, with status icon next to the project name on github. |
Kích Thước Tệp | 120 KB |
Số Lần Cài Đặt | 46 |
Phiên Bản Hiện Tại | 2.1.6 |
Cập Nhật Lần Cuối | 2018-03-08 |
Ngày Phát Hành | 2018-03-08 |
Đánh Giá | 4.29/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | wsywj61 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Yaowenjie/travis-github-chrome-extension |
URL Trang Trợ Giúp | https://github.com/Yaowenjie/travis-github-chrome-extension/issues |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "web_accessible_resources": [ "travis-icon.png", "build-failing.svg", "build-success.svg", "build-unknown.svg" ], "version": "2.1.6", "name": "Github Travis Stat", "short_name": "build-stat", "description": "Display travis-ci build status and time chart, with status icon next to the project name on github.", "homepage_url": "https:\/\/github.com\/Yaowenjie\/travis-github-chrome-extension", "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "https:\/\/api.travis-ci.org\/" ], "content_security_policy": "script-src 'self' https:\/\/github.com; object-src 'self'", "content_scripts": [ { "js": [ "bundle.js" ], "matches": [ "https:\/\/github.com\/*" ], "run_at": "document_idle" } ] } |