GitHub Inline Log Viewer

View CircleCI/Azure/Jenkins Logs directly on GitHub

Qu'est-ce que GitHub Inline Log Viewer ?

GitHub Inline Log Viewer est une extension Chrome développée par Meta, et sa fonction principale est "View CircleCI/Azure/Jenkins Logs directly on GitHub".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension GitHub Inline Log Viewer

Téléchargez les fichiers d'extension GitHub Inline Log Viewer 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 extension allows you to view logs from your continuous integration inline on GitHub. To view logs, you can click a build status item on the bottom of a Pull Request page. The logs will then be downloaded and shown on the page.

To set up the extension, follow the instructions on the settings page to add the relevant OAuth tokens so the extension can consult the CircleCI API.                    

Informations de Base sur l'Extension

Nom GitHub Inline Log Viewer GitHub Inline Log Viewer
ID nfbhlogkeldgllnlpodhgidcooebmaea
URL Officiel https://chromewebstore.google.com/detail/github-inline-log-viewer/nfbhlogkeldgllnlpodhgidcooebmaea
Description View CircleCI/Azure/Jenkins Logs directly on GitHub
Taille du Fichier 32.93 KB
Nombre d'Installations 42
Version Actuelle 3.0
Dernière Mise à Jour 2020-03-12
Date de Publication 2020-03-11
Évaluation 3.00/5 Total 1 Évaluations
Développeur Meta
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Inline Log Viewer",
    "short_name": "GitHub Inline Log Viewer",
    "description": "View CircleCI\/Azure\/Jenkins Logs directly on GitHub",
    "version": "3.0",
    "author": "pytorch",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "remove_cors.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*"
            ],
            "js": [
                "lib.js",
                "scrollview.js",
                "azure.js",
                "github_checks.js",
                "unsupported.js",
                "jenkins.js",
                "circleci.js",
                "build_info.js",
                "build_logs.js"
            ],
            "css": [
                "widescreen.css"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/ci.pytorch.org\/jenkins\/*",
        "https:\/\/github.com\/*",
        "https:\/\/circleci.com\/*",
        "https:\/\/*.amazonaws.com\/"
    ]
}