Log Scanner

Log Scanner

Log Scanner - This tool will help to scan debug log for SOQL queries and tally up the utilization of SOQL queries.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "Abhinav Swaroop Saxena",
  "name": "Log Scanner",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Log Scanner - This tool will help to scan debug log for SOQL queries and tally up the utilization of SOQL queries.",
  "icons": {
    "48": "img/icon128_log-scanner.jpg",
    "128": "img/icon128_log-scanner.jpg"
  },
  "browser_action": {
    "default_icon": "img/icon128_log-scanner.jpg"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.salesforce.com/p/setup/layout/ApexDebugLogDetailEdit/d*"
      ],
      "css": [
        "css/bootstrap.min.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/bootstrap.min.js",
        "js/popper.min.js",
        "js/localScript.js"
      ],
      "all_frames": true
    }
  ],
  "update_url": "https://clients2.google.com/service/update2/crx"
}