Salesforce.com Developer Console Extension
SalesForce.com Developer Console Extension
What is Salesforce.com Developer Console Extension?
Salesforce.com Developer Console Extension is a Chrome extension developed by Radek Baxa, and its main feature is "SalesForce.com Developer Console Extension".
Extension Screenshots
Download Salesforce.com Developer Console Extension Extension CRX File
Download Salesforce.com Developer Console Extension 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
Salesforce.com Developer Console Extension makes writing code more pleasant. Open source: https://bitbucket.org/RadekBaxa/sfdcdcextension Extension adds: CTRL + L shortcut for go to line number. CTRL + Q shortcut for go to last edited place Optionally disable back/forward key shortcut. Next features coming soon...
Extension Basic Information
Name | Salesforce.com Developer Console Extension |
ID | iibaelocaoaknnnhmlmliamfjifnjiff |
Official URL | https://chromewebstore.google.com/detail/salesforcecom-developer-c/iibaelocaoaknnnhmlmliamfjifnjiff |
Description | SalesForce.com Developer Console Extension |
File Size | 169 KB |
Installation Count | 317 |
Current Version | 0.1.2 |
Last Updated | 2022-09-19 |
Publish Date | 2016-09-25 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Radek Baxa |
[email protected] | |
Payment Type | free |
Extension Website | https://bitbucket.org/RadekBaxa/sfdcdcextension |
Help Page URL | https://bitbucket.org/RadekBaxa/sfdcdcextension/issues |
Privacy Policy Page URL | https://www.radekbaxa.cz/chrome-extension-privacy-policy.html |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Salesforce.com Developer Console Extension", "short_name": "SFDC DC Extension", "version": "0.1.2", "default_locale": "en", "description": "__MSG_ManifestDescription__", "icons": { "256": "img\/256_cloud-check.png", "128": "img\/128_cloud-check.png", "64": "img\/64_cloud-check.png", "32": "img\/32_cloud-check.png", "24": "img\/24_cloud-check.png", "16": "img\/16_cloud-check.png" }, "browser_action": { "default_title": "SFDC DC Extension", "default_icon": "\/img\/16_cloud-check.png", "default_popup": "popup.html" }, "author": "Radek Baxa", "options_page": "options.html", "options_ui": { "chrome_style": false, "page": "options.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/_ui\/common\/apex\/debug\/ApexCSIPage*" ], "js": [ "jquery-1.11.3.min.js", "sfdcdc-content-script.js" ] } ], "web_accessible_resources": [ "img\/*.png", "dev-console-goto-actions.js", "prevent-default-back-forward-actions.js" ], "permissions": [ "storage", "https:\/\/*\/_ui\/common\/apex\/debug\/ApexCSIPage*" ] } |