Github Travis Stat
Display travis-ci build status and time chart, with status icon next to the project name on github.
Qu'est-ce que Github Travis Stat ?
Github Travis Stat est une extension Chrome développée par wsywj61, et sa fonction principale est "Display travis-ci build status and time chart, with status icon next to the project name on github.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Github Travis Stat
Téléchargez les fichiers d'extension Github Travis Stat au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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的状态和时间变化。
Informations de Base sur l'Extension
Nom | Github Travis Stat |
ID | ekkfhiophiaakmeppcnkblpbbjlnlnmh |
URL Officiel | https://chromewebstore.google.com/detail/github-travis-stat/ekkfhiophiaakmeppcnkblpbbjlnlnmh |
Description | Display travis-ci build status and time chart, with status icon next to the project name on github. |
Taille du Fichier | 120 KB |
Nombre d'Installations | 46 |
Version Actuelle | 2.1.6 |
Dernière Mise à Jour | 2018-03-08 |
Date de Publication | 2018-03-08 |
Évaluation | 4.29/5 Total 7 Évaluations |
Développeur | wsywj61 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Yaowenjie/travis-github-chrome-extension |
URL de la Page d'Aide | https://github.com/Yaowenjie/travis-github-chrome-extension/issues |
Langues Prises en Charge | 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" } ] } |