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
Eメール [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
    }
}