Inspect and view changes in Salesforce SObject2Apex code generator 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 SObject2Apex code generator",
"version": "1.7",
"manifest_version": 2,
"description": "Generates apex code from salesforce record.",
"browser_action": {
"default_icon": "img/icon/active-icon.png",
"default_popup": "index.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"web_accessible_resources": [
"bower_components*"
],
"background": {
"page": "background.html"
},
"permissions": [
"https://*.salesforce.com/",
"https://*.force.com/",
"https://*.herokuapp.com/",
"activeTab",
"cookies"
]
}