Debug Doctor(beta)

Debug Doctor(beta)

Debug Doctor(beta)란 무엇입니까?

Debug Doctor(beta)은(는) Gagandeep Kainth에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Debug Doctor(beta)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Debug Doctor(beta) 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension enables log comparison for Debug Logs generated within Salesforce. This helps the Salesforce Developers to quickly spot the execution differences and resolve issues faster.

This is NOT a Salesforce.com product. 

IN NO EVENT SHALL DEVELOPER BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF DEVELOPER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

DEVELOPER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED HEREUNDER IS PROVIDED "AS IS". DEVELOPER HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.                    

확장 프로그램 기본 정보

이름 Debug Doctor(beta) Debug Doctor(beta)
ID apjnffafndghchieklahijnaonmnbkdj
공식 URL https://chromewebstore.google.com/detail/debug-doctorbeta/apjnffafndghchieklahijnaonmnbkdj
설명 Debug Doctor(beta)
파일 크기 573 KB
설치 횟수 207
현재 버전 0.1.04
최근 업데이트 2022-06-07
출시 날짜 2022-05-04
평점 5.00/5 총 1 개의 평점
개발자 Gagandeep Kainth
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Debug Doctor(beta)",
    "version": "0.1.04",
    "description": "Debug Doctor(beta)",
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/processor.js",
                "js\/manual_processor.js",
                "manualcompare.html",
                "index.html",
                "usage.html"
            ],
            "matches": [
                "https:\/\/*.my.salesforce.com\/*",
                "https:\/\/*.lightning.force.com\/*"
            ]
        }
    ],
    "icons": {
        "48": "images\/icon48.png",
        "32": "images\/icon32.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery.js",
                "js\/constants.js",
                "js\/content.js",
                "js\/global.js",
                "js\/cmprjs\/codemirror.min.js",
                "js\/cmprjs\/mergely.js"
            ],
            "matches": [
                "https:\/\/*.my.salesforce.com\/*",
                "https:\/\/*.lightning.force.com\/*"
            ],
            "css": [
                "styles\/style.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "host_permissions": [
        "https:\/\/*.my.salesforce.com\/p\/setup\/layout\/ApexDebugLogDetailEdit\/*",
        "https:\/\/*.lightning.force.com\/*"
    ],
    "permissions": [
        "storage",
        "cookies",
        "tabs",
        "webNavigation"
    ]
}