GitHub Inline Log Viewer
View CircleCI/Azure/Jenkins Logs directly on GitHub
GitHub Inline Log Viewerとは何ですか?
GitHub Inline Log ViewerはMetaによって開発されたChromeの拡張機能で、その主な機能は「View CircleCI/Azure/Jenkins Logs directly on GitHub」です。
拡張機能のスクリーンショット
GitHub Inline Log Viewer拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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\/" ] } |