Github Travis Stat

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

Τι είναι το Github Travis Stat;

Το Github Travis Stat είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον wsywj61, και η κύρια λειτουργία του είναι "Display travis-ci build status and time chart, with status icon next to the project name on github.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Github Travis Stat

Λήψη αρχείων επέκτασης Github Travis Stat σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα Github Travis Stat Github Travis Stat
ID ekkfhiophiaakmeppcnkblpbbjlnlnmh
Επίσημο URL https://chromewebstore.google.com/detail/github-travis-stat/ekkfhiophiaakmeppcnkblpbbjlnlnmh
Περιγραφή Display travis-ci build status and time chart, with status icon next to the project name on github.
Μέγεθος Αρχείου 120 KB
Αριθμός Εγκαταστάσεων 46
Τρέχουσα Έκδοση 2.1.6
Τελευταία Ενημέρωση 2018-03-08
Ημερομηνία Δημοσίευσης 2018-03-08
Αξιολόγηση 4.29/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής wsywj61
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/Yaowenjie/travis-github-chrome-extension
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/Yaowenjie/travis-github-chrome-extension/issues
Υποστηριζόμενες Γλώσσες 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"
        }
    ]
}