Github Travis Stat
Display travis-ci build status and time chart, with status icon next to the project name on github.
Was ist Github Travis Stat?
Github Travis Stat ist eine Chrome-Erweiterung, die von wsywj61 entwickelt wurde, und ihr Hauptmerkmal ist "Display travis-ci build status and time chart, with status icon next to the project name on github.".
Erweiterungsscreenshots
Github Travis Stat-Erweiterungs-CRX-Datei herunterladen
Laden Sie Github Travis Stat-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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的状态和时间变化。
Grundlegende Informationen zur Erweiterung
Name | Github Travis Stat |
ID | ekkfhiophiaakmeppcnkblpbbjlnlnmh |
Offizielle URL | https://chromewebstore.google.com/detail/github-travis-stat/ekkfhiophiaakmeppcnkblpbbjlnlnmh |
Beschreibung | Display travis-ci build status and time chart, with status icon next to the project name on github. |
Dateigröße | 120 KB |
Installationsanzahl | 46 |
Aktuelle Version | 2.1.6 |
Letztes Update | 2018-03-08 |
Veröffentlichungsdatum | 2018-03-08 |
Bewertung | 4.29/5 Insgesamt 7 Bewertungen |
Entwickler | wsywj61 |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/Yaowenjie/travis-github-chrome-extension |
Hilfeseite URL | https://github.com/Yaowenjie/travis-github-chrome-extension/issues |
Unterstützte Sprachen | 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" } ] } |