A browser extension that will allow sharing session-based Salesforce URLs for direct login.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "Salesforce Share",
"version": "0.0.0.1",
"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/*"
],
"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/"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}