Smart Apex Debugger
Developed by Pranav Goti
什么是Smart Apex Debugger?
Smart Apex Debugger是由pranavgoti1111开发的Chrome扩展程序,该扩展的主要功能是“Developed by Pranav Goti”。
扩展截图
下载Smart Apex Debugger扩展crx文件
下载Smart Apex Debugger扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 } |