Codecov
Codecov Browser Extension
Codecov क्या है?
Codecov Codecov by Sentry द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Codecov Browser Extension"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Codecov एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [ " |