Conga Debug Helper

Conga Debug Helper

View Imp Information for Debugging Conga Issues

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Conga Debug Helper",
  "description": "View Imp Information for Debugging Conga Issues",
  "version": "0.0.1.3",
  "manifest_version": 3,
  "author": {
    "name": "Mufaddal Laxmidhar",
    "url": "https://mufaddal19.github.io"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "cookies"
  ],
  "host_permissions": [
    "https://*.salesforce.com/*",
    "https://*.force.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.salesforce.com/*",
        "https://*.force.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/dewwowext16.png",
      "32": "/images/dewwowext32.png",
      "48": "/images/dewwowext48.png",
      "128": "/images/dewwowext128.png"
    }
  },
  "icons": {
    "16": "/images/dewwowext16.png",
    "32": "/images/dewwowext32.png",
    "48": "/images/dewwowext48.png",
    "128": "/images/dewwowext128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}