Salesforce Debug Log viewer
Search and view the filtered Salesforce debug logs
Salesforce Debug Log viewerคืออะไร?
Salesforce Debug Log viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mehaboob M และคุณลักษณะหลักของมันคือ "Search and view the filtered Salesforce debug logs"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Debug Log viewer
ดาวน์โหลดไฟล์ส่วนขยาย Salesforce Debug Log viewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Productivity tool allowing the Salesforce/Vlocity developers and administrators to filter the Salesforce debug logs. - The tool can be used for any log file viewed from the Salesforce 'Debug Logs' screen - Allows for filtering the number of lines instead of having to navigate through entire logs - String based search and return of lines before and after the line of interest - Include/option based of type of logs of interest Eg: User Debug statements - Custom search within the log file specific string match - Filtering options to exclude detailed logging statements especially System Entry/Exit, Heap Allocation etc - Display Salesforce governor limits usage from logs - Tool has been tested for files up to 20MB in size (generally the maximum size for Salesforce debug logs) - Log file is not required to be downloaded
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Salesforce Debug Log viewer |
ID | hkjclebibhoolmdkpahfndidllgbkalg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/salesforce-debug-log-view/hkjclebibhoolmdkpahfndidllgbkalg |
คำอธิบาย | Search and view the filtered Salesforce debug logs |
ขนาดไฟล์ | 24.87 KB |
จำนวนการติดตั้ง | 1,557 |
เวอร์ชันปัจจุบัน | 0.5 |
อัปเดตครั้งล่าสุด | 2020-06-13 |
วันที่เผยแพร่ | 2020-06-13 |
คะแนน | 2.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Mehaboob M |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Salesforce Debug Log viewer", "version": "0.5", "description": "Search and view the filtered Salesforce debug logs", "content_scripts": [ { "matches": [ "https:\/\/*.salesforce.com\/*" ], "all_frames": true, "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png", "256": "images\/icon256.png" } }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png", "256": "images\/icon256.png" } } |