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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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
    }
}