Salesforce Code Coverage Navigator
Adds a class name filter to Salesforce's test class coverage
Salesforce Code Coverage Navigator란 무엇입니까?
Salesforce Code Coverage Navigator은(는) msg.pelleg에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a class name filter to Salesforce's test class coverage"입니다.
확장 프로그램 스크린샷
Salesforce Code Coverage Navigator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Are you tired of wasting time searching for your test class after running a test to check your code coverage? Introducing "Salesforce Code Coverage Navigator" - the simple solution to simplify your navigation in the Code Coverage table. Our Chrome extension provides a simple and clean way to find your test class quickly and efficiently. With just a few clicks, you can enter your search class or even a partial class name and let our extension do the rest. It will automatically scroll and highlight your desired class and help you navigate your way through the Code Coverage table.
확장 프로그램 기본 정보
이름 | Salesforce Code Coverage Navigator |
ID | jkhdmmenajlichmlmfjjadkggpokeamp |
공식 URL | https://chromewebstore.google.com/detail/salesforce-code-coverage/jkhdmmenajlichmlmfjjadkggpokeamp |
설명 | Adds a class name filter to Salesforce's test class coverage |
파일 크기 | 82.03 KB |
설치 횟수 | 321 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2023-04-06 |
출시 날짜 | 2023-02-27 |
개발자 | msg.pelleg |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.linkedin.com/in/pelleg-maimon-81853aa7/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salesforce Code Coverage Navigator", "description": "Adds a class name filter to Salesforce's test class coverage", "version": "1.0.4", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/*.salesforce.com\/_ui\/common\/apex\/debug\/ApexCSIPage\/*", "https:\/\/*.salesforce.com\/_ui\/common\/apex\/debug\/ApexCSIPage" ], "js": [ "modal-index.js" ], "css": [ "modal-index.css" ] } ], "icons": { "16": "resources\/icon16.png", "32": "resources\/icon32.png", "48": "resources\/icon48.png", "128": "resources\/icon128.png" }, "web_accessible_resources": [ { "resources": [ "modal-index.css", "modal-index.html", "resources\/*.png" ], "matches": [ "https:\/\/*.salesforce.com\/*" ] } ] } |