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
官方網址 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
    }
}