LogMachine

LogMachine

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

Merlin
Additional files are visible only to premium users

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