Code Coverage Calculator
Shows the code coverage of opened tab interactively without going to developer console
Code Coverage Calculator là gì?
Code Coverage Calculator là một tiện ích mở rộng Chrome được phát triển bởi Sumit Bhatt, và tính năng chính của nó là "Shows the code coverage of opened tab interactively without going to developer console".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Code Coverage Calculator
Tải xuống các tệp mở rộng Code Coverage Calculator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Code Coverage Calculator |
ID | ncdifkcipeniikkbckejmnbbcofdheig |
URL Chính Thức | https://chromewebstore.google.com/detail/code-coverage-calculator/ncdifkcipeniikkbckejmnbbcofdheig |
Mô tả | Shows the code coverage of opened tab interactively without going to developer console |
Kích Thước Tệp | 1.46 MB |
Số Lần Cài Đặt | 5,820 |
Phiên Bản Hiện Tại | 0.8.9 |
Cập Nhật Lần Cuối | 2022-06-29 |
Ngày Phát Hành | 2019-10-28 |
Đánh Giá | 4.21/5 Tổng số 14 Đánh Giá |
Nhà Phát Triển | Sumit Bhatt |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://codecoveragecalculator.wordpress.com/ |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |