Salesforce Debug Log viewer

Search and view the filtered Salesforce debug logs

Salesforce Debug Log viewer क्या है?

Salesforce Debug Log viewer Mehaboob M द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Search and view the filtered Salesforce debug logs"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Salesforce Debug Log viewer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
    }
}