Open Salesforce Developer Console
Opens the Salesforce developer console from your currently opened Org
Wat is Open Salesforce Developer Console?
Open Salesforce Developer Console is een Chrome-extensie ontwikkeld door john.hutchins, en de belangrijkste functie is "Opens the Salesforce developer console from your currently opened Org".
Extensie Screenshots
Download het CRX-bestand van de extensie Open Salesforce Developer Console
Download Open Salesforce Developer Console-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | Open Salesforce Developer Console |
ID | dkjpcmmbikopcnmhfnhammoejckdgajb |
Officiële URL | https://chromewebstore.google.com/detail/open-salesforce-developer/dkjpcmmbikopcnmhfnhammoejckdgajb |
Beschrijving | Opens the Salesforce developer console from your currently opened Org |
Bestandsgrootte | 10.94 KB |
Aantal Installaties | 84 |
Huidige Versie | 3.2 |
Laatst Bijgewerkt | 2020-07-29 |
Publicatiedatum | 2020-04-20 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | john.hutchins |
[email protected] | |
Betalingswijze | free |
Help Pagina-URL | https://github.com/johnhutchins/openDevConsole |
Ondersteunde Talen | 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" } } |