Github Travis Stat

Display travis-ci build status and time chart, with status icon next to the project name on github.

Wat is Github Travis Stat?

Github Travis Stat is een Chrome-extensie ontwikkeld door wsywj61, en de belangrijkste functie is "Display travis-ci build status and time chart, with status icon next to the project name on github.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Github Travis Stat

Download Github Travis Stat-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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的状态和时间变化。                    

Basisinformatie over de Extensie

Naam Github Travis Stat Github Travis Stat
ID ekkfhiophiaakmeppcnkblpbbjlnlnmh
Officiële URL https://chromewebstore.google.com/detail/github-travis-stat/ekkfhiophiaakmeppcnkblpbbjlnlnmh
Beschrijving Display travis-ci build status and time chart, with status icon next to the project name on github.
Bestandsgrootte 120 KB
Aantal Installaties 46
Huidige Versie 2.1.6
Laatst Bijgewerkt 2018-03-08
Publicatiedatum 2018-03-08
Beoordeling 4.29/5 Totaal 7 Beoordelingen
Ontwikkelaar wsywj61
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/Yaowenjie/travis-github-chrome-extension
Help Pagina-URL https://github.com/Yaowenjie/travis-github-chrome-extension/issues
Ondersteunde Talen 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"
        }
    ]
}