Force.com Code Magnet
Backup any Apex class,Visualforce Page or Trigger in a click
What is Force.com Code Magnet?
Force.com Code Magnet is a Chrome extension developed by SFDC.FOOL, and its main feature is "Backup any Apex class,Visualforce Page or Trigger in a click".
Extension Screenshots
Download Force.com Code Magnet Extension CRX File
Download Force.com Code Magnet extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Apart from the traditional download button for an apex class this tiny lite weight extension adds a button to any standard Salesforce coding environment like Apex Class details/Edit view,VisualForce Page details/Edit view,Trigger Details/Edit view or even in the force.com development toolbar to quickly download a copy of the code you have.The extension also keeps track of the last backup time stamp in a colorful way.
Extension Basic Information
Name | |
ID | jpiacigbgigobgckoimppkecglbmlmac |
Official URL | https://chrome.google.com/webstore/detail/forcecom-code-magnet/jpiacigbgigobgckoimppkecglbmlmac |
Description | Backup any Apex class,Visualforce Page or Trigger in a click |
File Size | 299 KB |
Installation Count | 27 |
Current Version | 1.2 |
Last Updated | 2015-09-20 |
Publish Date | 2015-09-20 |
Rating | 5.00/5 Total 4 Ratings |
Developer | SFDC.FOOL |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Force.com Code Magnet", "description": "Backup any Apex class,Visualforce Page or Trigger in a click", "version": "1.2", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage" ], "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.visual.force.com\/*" ], "js": [ "j_2.1.4.min.js", "popup_helper.js" ] } ] } |