Quickly compare two different salesforce profiles and find difference
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": "Crazy Compare For Salesforce",
"version": "1.1.7",
"description": "Quickly compare two different salesforce profiles and find difference",
"content_security_policy": {
"extension_pages": "default-src 'self'"
},
"background": {
"service_worker": "background.js"
},
"action": {},
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"images/*.png"
]
}
],
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"content_scripts": [
{
"js": [
"js/jquery.js",
"js/content.js",
"js/global.js"
],
"css": [
"css/styles.css",
"css/loader.css"
],
"incognito": "split",
"matches": [
"https://*.my.salesforce.com/setup*",
"https://*.lightning.force.com/lightning/setup/*",
"https://*.salesforce-setup.com/*"
],
"run_at": "document_idle"
}
],
"host_permissions": [
"https://*.my.salesforce.com/setup*",
"https://*.lightning.force.com/lightning/setup/*"
],
"permissions": [
"cookies",
"activeTab"
]
}