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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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