Smart Apex Debugger
Developed by Pranav Goti
Smart Apex Debugger란 무엇입니까?
Smart Apex Debugger은(는) pranavgoti1111에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Developed by Pranav Goti"입니다.
확장 프로그램 스크린샷
Smart Apex Debugger 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Salesforce Debugger tool with some Additional Functionality to salesforce developer to increase productivity. Version [0.0.8] Update : Bug Fixed, Extract SOQL Analysis per Transaction, Extract Field Dependency, Performance Improvement, UI Enhancement New App : Data Exporter [ Retrieve Records based on excel with record-id ] Please share your valuable feedback here : https://forms.gle/QpSzbUhkZ8K5LMPw8 Catchup with me for Collab : Instagram handle : https://www.instagram.com/gotibapu_pranav/ https://www.instagram.com/sfdev_pranav/ LinkedIn : https://www.linkedin.com/in/pranav-goti/
확장 프로그램 기본 정보
이름 | |
ID | hgfjaoeaeojnfgjiddombbmphaajdmga |
공식 URL | https://chromewebstore.google.com/detail/smart-apex-debugger/hgfjaoeaeojnfgjiddombbmphaajdmga |
설명 | Developed by Pranav Goti |
파일 크기 | 1.27 MB |
설치 횟수 | 198 |
현재 버전 | 0.0.8 |
최근 업데이트 | 2023-11-14 |
출시 날짜 | 2022-04-28 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | pranavgoti1111 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Smart Apex Debugger", "description": "Developed by Pranav Goti", "version": "0.0.8", "author": "Pranav Goti", "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "permissions": [ "activeTab", "cookies", "contextMenus", "scripting", "tabs" ], "host_permissions": [ "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "minimum_chrome_version": "93", "background": { "service_worker": "background.js" }, "icons": { "16": "\/assets\/images\/icon16.png", "48": "\/assets\/images\/icon48.png", "128": "\/assets\/images\/icon128.png" }, "web_accessible_resources": [ { "resources": [ "CSS\/test.css", "assets\/svg\/user-profile.svg" ], "matches": [ "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*" ] } ], "manifest_version": 3 } |