Salesforce SmartLog

Read your Salesforce logs smarter.

Salesforce SmartLog क्या है?

Salesforce SmartLog sagix1 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Read your Salesforce logs smarter."।

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

screenshot

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

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

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

                        This extension steps in to simplify the intricate nature of Salesforce debug logs, offering a range of features designed to optimize your experience:

✨ Smart Log Interpretation: Gain an improved understanding of the entire running process through intuitive log interpretation.

🔍 Effortless Search: Seamlessly locate relevant logs through an advanced search feature that streamlines the process.

📜 Inline JSON Parsing: Simplify JSON comprehension with a one-click inline parsing function.

📊 Efficient SOQL Reading: Enhance reading with a single-click option that facilitates easier comprehension of SOQL queries.

🔄 Auto Refresh: Enjoy the convenience of an auto-refresh feature that keeps your log list up to date.

🗑️ Bulk Log Deletion: Streamline management by choosing the bulk log deletion option.

📌 Log Marking: Highlight logs for later reference, aiding in organization and efficiency.

🟢 Log Line Highlighting: Identify debug lines with green highlights and error/exception lines with red highlights for improved visibility.

🖥️ User-Friendly UI: Experience easy-to-read logs, even on your laptop, thanks to an optimized user interface.

↩️ Toggle Back: Always revert to the standard log view when needed.


*** Change log: ***
29/12/23
0.1.4
Classes' names are now easier to target.
Better categorization for async executions.
______________________________________________________________________________________
25/12/23
0.1.3
Added the option to collapse sections by clicking them!
+ bug fixes...
______________________________________________________________________________________
23/12/23
0.1.2
Improved performance for bigger logs.
Lazy loading has been removed, and now you can search from within the whole rendered log. 
Line numbers were removed.
______________________________________________________________________________________
18/08/23
0.1.1
Now you will have the ability to hover over the a row categories (the colors on the side..) and see what the color meaning!
______________________________________________________________________________________

12/08/23
0.1.0
Successfully Uploaded to Chrome Extension Store!                    

एक्सटेंशन की मूल जानकारी

नाम Salesforce SmartLog Salesforce SmartLog
ID madkhmlehoekkgblgilleohknceekjhe
आधिकारिक URL https://chromewebstore.google.com/detail/salesforce-smartlog/madkhmlehoekkgblgilleohknceekjhe
विवरण Read your Salesforce logs smarter.
फ़ाइल का आकार 152 KB
स्थापना संख्या 266
वर्तमान संस्करण 0.1.4
अंतिम अपडेट 2023-12-30
प्रकाशन तिथि 2023-08-14
रेटिंग 4.83/5 कुल 6 रेटिंग्स
डेवलपर sagix1
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Salesforce SmartLog",
    "version": "0.1.4",
    "description": "Read your Salesforce logs smarter.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon16.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "cookies",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*.lightning.force.com\/*",
        "https:\/\/*.my.salesforce.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.lightning.force.com\/lightning\/setup\/ApexDebugLogs\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/assets\/regular\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}