GitHub Inline Log Viewer
View CircleCI/Azure/Jenkins Logs directly on GitHub
GitHub Inline Log Viewer là gì?
GitHub Inline Log Viewer là một tiện ích mở rộng Chrome được phát triển bởi Meta, và tính năng chính của nó là "View CircleCI/Azure/Jenkins Logs directly on GitHub".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng GitHub Inline Log Viewer
Tải xuống các tệp mở rộng GitHub Inline Log Viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GitHub Inline Log Viewer |
ID | nfbhlogkeldgllnlpodhgidcooebmaea |
URL Chính Thức | https://chromewebstore.google.com/detail/github-inline-log-viewer/nfbhlogkeldgllnlpodhgidcooebmaea |
Mô tả | View CircleCI/Azure/Jenkins Logs directly on GitHub |
Kích Thước Tệp | 32.93 KB |
Số Lần Cài Đặt | 42 |
Phiên Bản Hiện Tại | 3.0 |
Cập Nhật Lần Cuối | 2020-03-12 |
Ngày Phát Hành | 2020-03-11 |
Đánh Giá | 3.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Meta |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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\/" ] } |