Salesforce Dependent Picklist Matrix Export

Salesforce Dependent Picklist Matrix Export

Saves the Dependent Picklist Matrix as a CSV file

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Salesforce Dependent Picklist Matrix Export",
  "version": "0.0.8",
  "description": "Saves the Dependent Picklist Matrix as a CSV file",
  "author": {
    "name": "Maninder Singh",
    "url": "https://www.sfdcproducthunt.com/"
  },
  "homepage_url": "https://www.sfdcproducthunt.com/",
  "permissions": [
    "clipboardWrite",
    "storage"
  ],
  "icons": {
    "16": "icons/icon16x16.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://*.force.com/*depend*",
        "https://*.salesforce.com/*depend*"
      ],
      "all_frames": true,
      "js": [
        "js/contentscript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/clickjs.js",
        "js/options.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "options_page": "js/options.html"
}