Inspect and view changes in SFDC Magic Toolkit 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": "SFDC Magic Toolkit",
"description": "Toolkit provides Package.xml out of change sets. Test coverage export functionality. Fast navigation to User detail. Big Query.",
"version": "1.1.0",
"permissions": [
"cookies",
"tabs",
"https://*.salesforce.com/*",
"https://*.force.com/*"
],
"content_scripts": [
{
"matches": [
"https://*.salesforce.com/*",
"https://*.visual.force.com/*"
],
"js": [
"js/jquery.js",
"js/SFDCToolkitContentScript.js"
]
}
],
"browser_action": {
"default_title": "SFDC Magic Toolkit",
"default_popup": "popup.html"
},
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"manifest_version": 2
}