LogMachine

This plugin is for Salesforce debug log, it will help in analyzing the log efficiently by highlighting key important sections in…

Vad är LogMachine?

LogMachine är en Chrome-tillägg utvecklad av Gourav Bhardwaj, och dess huvudfunktion är "This plugin is for Salesforce debug log, it will help in analyzing the log efficiently by highlighting key important sections in…".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner LogMachine-förlängningens CRX-fil

Ladda ner LogMachine-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This plugin is for Salesforce debug log, it will help in analyzing the log efficiently by highlighting key important sections in the log and also giving help tips to avoid error. The Code Unit and Method Entry/Exit is now clickable, clicking those will directly take the user to the Component.

New : 
1. Color Index has checkbox to filter specific Log Context.Suppose we want to see Errors and User Debug only, users can select the specific check box and see only required contents.

2. Color Index is Floatable so its always visible for reference and filtering the Log Further.

For Issues/Feedback get in touch: 
www.thelogmachine.com
[email protected]                    

Grundläggande Information om Tillägg

Namn LogMachine LogMachine
ID ngppecjgpbgmfcjjakdjfbnpnihcgpdb
Officiell webbadress https://chromewebstore.google.com/detail/logmachine/ngppecjgpbgmfcjjakdjfbnpnihcgpdb
Beskrivning This plugin is for Salesforce debug log, it will help in analyzing the log efficiently by highlighting key important sections in…
Filstorlek 2.19 MB
Antal Installationer 477
Aktuell Version 3.3
Senast Uppdaterad 2020-03-08
Publiceringsdatum 2020-03-08
Betyg 4.71/5 Totalt 7 Betyg
Utvecklare Gourav Bhardwaj
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://thelogmachine.com
Hjälpsida URL http://thelogmachine.com/#contact
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LogMachine",
    "short_name": "LogMachine",
    "version": "3.3",
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "https:\/\/*.force.com\/*",
        "https:\/\/*.salesforce.com\/",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/setup\/ui\/*",
                "https:\/\/*.salesforce.com\/p\/setup\/layout\/ApexDebugLogDetailEdit\/*",
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*"
            ],
            "css": [
                "font-awesome-4.7.0\/css\/font-awesome.css"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "CodeFormatter.js",
                "forcetk.js",
                "debugConsoleHandler.js",
                "formatDebugSummaryLog.js",
                "formatDebugDetailsLog.js",
                "formatApexClass.js",
                "calloutRESTSFDC.js",
                "UtilClass.js",
                "ApexClassHandler.js",
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.png",
        "View.png"
    ]
}