GitHub Inline Log Viewer
View CircleCI/Azure/Jenkins Logs directly on GitHub
Τι είναι το GitHub Inline Log Viewer;
Το GitHub Inline Log Viewer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Meta, και η κύρια λειτουργία του είναι "View CircleCI/Azure/Jenkins Logs directly on GitHub".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GitHub Inline Log Viewer
Λήψη αρχείων επέκτασης GitHub Inline Log Viewer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | GitHub Inline Log Viewer |
ID | nfbhlogkeldgllnlpodhgidcooebmaea |
Επίσημο URL | https://chromewebstore.google.com/detail/github-inline-log-viewer/nfbhlogkeldgllnlpodhgidcooebmaea |
Περιγραφή | View CircleCI/Azure/Jenkins Logs directly on GitHub |
Μέγεθος Αρχείου | 32.93 KB |
Αριθμός Εγκαταστάσεων | 42 |
Τρέχουσα Έκδοση | 3.0 |
Τελευταία Ενημέρωση | 2020-03-12 |
Ημερομηνία Δημοσίευσης | 2020-03-11 |
Αξιολόγηση | 3.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Meta |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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\/" ] } |