Code Coverage Calculator

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

Code Coverage Calculatorคืออะไร?

Code Coverage Calculator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sumit Bhatt และคุณลักษณะหลักของมันคือ "Shows the code coverage of opened tab interactively without going to developer console"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Code Coverage Calculator

ดาวน์โหลดไฟล์ส่วนขยาย 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
    }
}