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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dominique Müller, και η κύρια λειτουργία του είναι "Enhances the Travis CI status on GitHub pull request pages.".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης GitHub & Travis CI - Enhanced Status

Λήψη αρχείων επέκτασης 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 GitHub & Travis CI - Enhanced Status
ID feamoaieedkmfkeiaplidoingcflbggm
Επίσημο URL 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"
            ]
        }
    ]
}