Salesforce Share

Salesforce Share

A browser extension that will allow sharing session-based Salesforce URLs for direct login.

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 Share",
  "version": "0.0.0.2",
  "description": "A browser extension that will allow sharing session-based Salesforce URLs for direct login.",
  "author": "Jasneet Dua ([email protected])",
  "icons": {
    "16": "./images/icons/icon-16.png",
    "32": "images/icons/icon-32.png",
    "48": "images/icons/icon-48.png",
    "128": "images/icons/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.salesforce.com/*",
        "https://*.force.com/*",
        "https://*.site.com/*"
      ],
      "js": [
        "./scripts/content.js"
      ]
    }
  ],
  "action": {
    "default_icon": "images/icons/icon-16.png",
    "default_popup": "popup/index.html",
    "default_title": "Salesforce Share - Generate Session URL"
  },
  "permissions": [
    "tabs",
    "cookies"
  ],
  "host_permissions": [
    "https://*.salesforce.com/",
    "https://*.force.com/",
    "https://*.site.com/"
  ]
}