Salesforce smart setup navigation

Salesforce smart setup navigation

Tool designed to make salesforce setup navigation much easier. It allows to add more tabs to setup quick navbar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Salesforce smart setup navigation",
  "description": "Tool designed to make salesforce setup navigation much easier. It allows to add more tabs to setup quick navbar.",
  "version": "1.2.0",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://*.lightning.force.com/lightning/setup/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ]
}