Inspect and view changes in Page Layout Field Extractor - Salesforce 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": "Page Layout Field Extractor - Salesforce",
"version": "0.1",
"author": "Mohit Jangid",
"description": "Tool to get object's page layout fields in csv...",
"host_permissions": [
"https://*.force.com/*",
"https://*.salesforce.com/*"
],
"permissions": [
"tabs",
"cookies"
],
"content_scripts": [
{
"matches": [
"https://*.force.com/*",
"https://*.salesforce.com/*"
],
"js": [
"content.js"
]
}
],
"action": {
"default_popup": "index.html",
"default_title": "click to open popup..."
},
"icons": {
"48": "icons/icon48.png"
}
}