Inspect and view changes in Salesforce Tab Organizer source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Salesforce Tab Organizer",
"version": "0.0.0.2",
"description": "Effortlessly manage multiple Salesforce instances with Salesforce Tab Organizer.",
"author": "Jasneet Dua (jasneetdua96@gmail.com)",
"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"
]
}
],
"permissions": [
"tabs",
"tabGroups",
"storage"
],
"background": {
"service_worker": "scripts/service_worker.js"
},
"action": {
"default_icon": "images/icons/icon-16.png",
"default_popup": "popup/index.html",
"default_title": "Salesforce Tab Organizer"
}
}