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 |
| 官方網址 | 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
} | |