Code Coverage Calculator

Shows the code coverage of opened tab interactively without going to developer console

什么是Code Coverage Calculator?

Code Coverage Calculator是由Sumit Bhatt开发的Chrome扩展程序,该扩展的主要功能是“Shows the code coverage of opened tab interactively without going to developer console”。

扩展截图

screenshot
screenshot

下载Code Coverage Calculator扩展crx文件

下载Code Coverage Calculator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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
    }
}