Codecov
Codecov Browser Extension
Codecov란 무엇입니까?
Codecov은(는) Codecov by Sentry에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Codecov Browser Extension"입니다.
확장 프로그램 스크린샷
Codecov 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Automatically see code coverage data and line annotations while browsing files or reviewing pull requests in GitHub. Simply install the extension to get started. About this extension: The Code Coverage browser extension makes it easy to identify needed test areas by showing you absolute coverage and coverage changes overlaid with your code right in GitHub Once installed, get: * Line coverage information while viewing commits and single files * Line coverage information and coverage totals on Pull Requests * The ability to filter coverage using Flags and Components directly in the GitHub UI Pre-requisites: * Must use either Firefox or Google Chrome web browsers. * Must have GitHub's Global navigation update enabled The extension uses your logged-in session to determine the repos you can access. Please make sure to log in to Codecov using your web browser to view coverage data. About Codecov: Codecov is the all-in-one code coverage reporting solution for any test suite - giving developers actionable insights to deploy reliable code with confidence.
확장 프로그램 기본 정보
이름 | Codecov |
ID | gedikamndpbemklijjkncpnolildpbgo |
공식 URL | https://chromewebstore.google.com/detail/codecov/gedikamndpbemklijjkncpnolildpbgo |
설명 | Codecov Browser Extension |
파일 크기 | 149 KB |
설치 횟수 | 806 |
현재 버전 | 0.4.1 |
최근 업데이트 | 2023-11-30 |
출시 날짜 | 2023-05-30 |
평점 | 4.78/5 총 9 개의 평점 |
개발자 | Codecov by Sentry |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/codecov/codecov-browser-extension |
개인정보 보호 정책 페이지 URL | https://about.codecov.io/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Codecov", "description": "Codecov Browser Extension", "version": "0.4.1", "options_ui": { "page": "options.html" }, "action": { "default_icon": "codecov-circle.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*" ], "js": [ "js\/vendor.js", "js\/githubFile.js", "js\/githubPR.js" ] } ], "background": { "service_worker": "js\/background.js" }, "permissions": [ "storage", "scripting", "activeTab" ], "host_permissions": [ "https:\/\/api.codecov.io\/*" ], "optional_host_permissions": [ " |