LogMachine

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

Τι είναι το LogMachine;

Το LogMachine είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Gourav Bhardwaj, και η κύρια λειτουργία του είναι "This plugin is for Salesforce debug log, it will help in analyzing the log efficiently by highlighting key important sections in…".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης LogMachine

Λήψη αρχείων επέκτασης LogMachine σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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]                    

Βασικές Πληροφορίες Επέκτασης

Όνομα LogMachine LogMachine
ID ngppecjgpbgmfcjjakdjfbnpnihcgpdb
Επίσημο URL https://chromewebstore.google.com/detail/logmachine/ngppecjgpbgmfcjjakdjfbnpnihcgpdb
Περιγραφή This plugin is for Salesforce debug log, it will help in analyzing the log efficiently by highlighting key important sections in…
Μέγεθος Αρχείου 2.19 MB
Αριθμός Εγκαταστάσεων 477
Τρέχουσα Έκδοση 3.3
Τελευταία Ενημέρωση 2020-03-08
Ημερομηνία Δημοσίευσης 2020-03-08
Αξιολόγηση 4.71/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής Gourav Bhardwaj
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://thelogmachine.com
Διεύθυνση URL της Σελίδας Βοήθειας http://thelogmachine.com/#contact
Υποστηριζόμενες Γλώσσες 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"
    ]
}