Code Coverage Calculator
Shows the code coverage of opened tab interactively without going to developer console
Code Coverage Calculator क्या है?
Code Coverage Calculator Sumit Bhatt द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows the code coverage of opened tab interactively without going to developer console"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Code Coverage Calculator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Code Coverage Calculator |
ID | ncdifkcipeniikkbckejmnbbcofdheig |
आधिकारिक URL | https://chromewebstore.google.com/detail/code-coverage-calculator/ncdifkcipeniikkbckejmnbbcofdheig |
विवरण | Shows the code coverage of opened tab interactively without going to developer console |
फ़ाइल का आकार | 1.46 MB |
स्थापना संख्या | 5,820 |
वर्तमान संस्करण | 0.8.9 |
अंतिम अपडेट | 2022-06-29 |
प्रकाशन तिथि | 2019-10-28 |
रेटिंग | 4.21/5 कुल 14 रेटिंग्स |
डेवलपर | Sumit Bhatt |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://codecoveragecalculator.wordpress.com/ |
समर्थित भाषाएँ | 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 } } |