Inspect and view changes in Salesforce Profile Reader 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",
"name": "Salesforce Profile Reader",
"version": "0.8.2",
"manifest_version": 3,
"default_locale": "en",
"description": "__MSG_Description__",
"permissions": [
"cookies",
"declarativeContent"
],
"host_permissions": [
"https://*.salesforce.com/*",
"https://*.force.com/*",
"https://*.cloudforce.com/*"
],
"icons": {
"128": "icons/icon128.png"
},
"action": {},
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"profileReader.html"
],
"matches": [
"https://*.salesforce.com/*",
"https://*.force.com/*",
"https://*.cloudforce.com/*"
]
}
],
"content_security_policy": {
"script-src": "self",
"object-src": "self"
}
}