Open Salesforce Developer Console
Opens the Salesforce developer console from your currently opened Org
What is Open Salesforce Developer Console?
Open Salesforce Developer Console is a Chrome extension developed by john.hutchins, and its main feature is "Opens the Salesforce developer console from your currently opened Org".
Extension Screenshots
Download Open Salesforce Developer Console Extension CRX File
Download Open Salesforce Developer Console 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
Allows you to open the Salesforce developer console with one click. This aims to simplify your workflow to make opening the dev console a 1 click process!
Extension Basic Information
Name | Open Salesforce Developer Console |
ID | dkjpcmmbikopcnmhfnhammoejckdgajb |
Official URL | https://chromewebstore.google.com/detail/open-salesforce-developer/dkjpcmmbikopcnmhfnhammoejckdgajb |
Description | Opens the Salesforce developer console from your currently opened Org |
File Size | 10.94 KB |
Installation Count | 84 |
Current Version | 3.2 |
Last Updated | 2020-07-29 |
Publish Date | 2020-04-20 |
Rating | 5.00/5 Total 1 Ratings |
Developer | john.hutchins |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/johnhutchins/openDevConsole |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Open Salesforce Developer Console", "version": "3.2", "manifest_version": 2, "description": "Opens the Salesforce developer console from your currently opened Org", "background": { "persistent": false, "scripts": [ "background_script.js" ] }, "permissions": [ "https:\/\/*.salesforce.com\/", "activeTab", "tabs" ], "browser_action": { "default_icon": "icons\/48.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+Y", "mac": "Command+Shift+Y", "chromeos": "Ctrl+Shift+Y", "linux": "Ctrl+Shift+Y" } } }, "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" } } |