Code Coverage Calculator
Shows the code coverage of opened tab interactively without going to developer console
Qu'est-ce que Code Coverage Calculator ?
Code Coverage Calculator est une extension Chrome développée par Sumit Bhatt, et sa fonction principale est "Shows the code coverage of opened tab interactively without going to developer console".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Code Coverage Calculator
Téléchargez les fichiers d'extension Code Coverage Calculator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This Chrome extension provides the code coverage of a class dynamically on the salesforce classic web page without going to the developer console. This makes easy for the developers to see the code coverage of the classes or triggers on the same time and easy to create the test class without going to the developer console.
Informations de Base sur l'Extension
Nom | Code Coverage Calculator |
ID | ncdifkcipeniikkbckejmnbbcofdheig |
URL Officiel | https://chromewebstore.google.com/detail/code-coverage-calculator/ncdifkcipeniikkbckejmnbbcofdheig |
Description | Shows the code coverage of opened tab interactively without going to developer console |
Taille du Fichier | 1.46 MB |
Nombre d'Installations | 5,820 |
Version Actuelle | 0.8.9 |
Dernière Mise à Jour | 2022-06-29 |
Date de Publication | 2019-10-28 |
Évaluation | 4.21/5 Total 14 Évaluations |
Développeur | Sumit Bhatt |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://codecoveragecalculator.wordpress.com/ |
Langues Prises en Charge | en |
manifest.json | |
{ "name": "Code Coverage Calculator", "version": "0.8.9", "description": "Shows the code coverage of opened tab interactively without going to developer console", "manifest_version": 2, "icons": { "16": "img\/icons\/16.png", "48": "img\/icons\/48.png", "128": "img\/icons\/128.png" }, "permissions": [ "storage" ], "author": "Sumit Bhatt", "browser_action": { "default_icon": "img\/codecoveragecalculator.png", "default_popup": "view\/popup.html" }, "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx?response=updatecheck&x=id%3Dncdifkcipeniikkbckejmnbbcofdheig%26uc", "content_scripts": [ { "js": [ "js\/jquery.js", "js\/forcetk.js", "js\/tinycon.js", "js\/contentscript.js" ], "matches": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.force.com\/*" ] } ], "background": { "scripts": [ "js\/background.js" ], "persistent": false } } |