Codecov

Codecov Browser Extension

Codecovとは何ですか?

CodecovはCodecov by Sentryによって開発されたChromeの拡張機能で、その主な機能は「Codecov Browser Extension」です。

拡張機能のスクリーンショット

screenshot

Codecov拡張機能のCRXファイルをダウンロード

Codecov拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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 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
Eメール [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": [
        ""
    ]
}