Codecov
Codecov Browser Extension
Cos'è Codecov?
Codecov è un'estensione di Chrome sviluppata da Codecov by Sentry, e la sua funzione principale è "Codecov Browser Extension".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Codecov
Scarica i file di estensione Codecov in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Codecov |
ID | gedikamndpbemklijjkncpnolildpbgo |
URL Ufficiale | https://chromewebstore.google.com/detail/codecov/gedikamndpbemklijjkncpnolildpbgo |
Descrizione | Codecov Browser Extension |
Dimensione del File | 149 KB |
Conteggio Installazioni | 806 |
Versione Corrente | 0.4.1 |
Ultimo Aggiornamento | 2023-11-30 |
Data di Pubblicazione | 2023-05-30 |
Valutazione | 4.78/5 Totale 9 Valutazioni |
Sviluppatore | Codecov by Sentry |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/codecov/codecov-browser-extension |
URL della Pagina della Politica sulla Privacy | https://about.codecov.io/privacy |
Lingue Supportate | 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": [ " |