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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/" ] } |