GitHub & Travis CI - Enhanced Status
Enhances the Travis CI status on GitHub pull request pages.
什麼是GitHub & Travis CI - Enhanced Status?
GitHub & Travis CI - Enhanced Status是由Dominique Müller開發的Chrome擴展程式,該擴展的主要功能是“Enhances the Travis CI status on GitHub pull request pages.”。
擴展截圖
下載GitHub & Travis CI - Enhanced Status擴展crx文件
下載GitHub & Travis CI - Enhanced Status擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | GitHub & Travis CI - Enhanced Status |
ID | feamoaieedkmfkeiaplidoingcflbggm |
官方網址 | https://chromewebstore.google.com/detail/github-travis-ci-enhanced/feamoaieedkmfkeiaplidoingcflbggm |
簡介 | Enhances the Travis CI status on GitHub pull request pages. |
檔案大小 | 20.03 KB |
安裝次數 | 27 |
目前版本 | 1.1.2 |
更新時間 | 2018-05-05 |
上架時間 | 2018-05-05 |
開發者 | Dominique Müller |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/dominique-mueller |
說明頁面URL | https://github.com/dominique-mueller/web-extension-github-travis-status/issues |
支援的語言 | 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" ] } ] } |