Open Salesforce Developer Console
Opens the Salesforce developer console from your currently opened Org
Vad är Open Salesforce Developer Console?
Open Salesforce Developer Console är en Chrome-tillägg utvecklad av john.hutchins, och dess huvudfunktion är "Opens the Salesforce developer console from your currently opened Org".
Tilläggsskärmbilder
Ladda ner Open Salesforce Developer Console-förlängningens CRX-fil
Ladda ner Open Salesforce Developer Console-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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! Grundläggande Information om Tillägg
| Namn | |
| ID | dkjpcmmbikopcnmhfnhammoejckdgajb |
| Officiell webbadress | https://chromewebstore.google.com/detail/open-salesforce-developer/dkjpcmmbikopcnmhfnhammoejckdgajb |
| Beskrivning | Opens the Salesforce developer console from your currently opened Org |
| Filstorlek | 10.94 KB |
| Antal Installationer | 84 |
| Aktuell Version | 3.2 |
| Senast Uppdaterad | 2020-07-29 |
| Publiceringsdatum | 2020-04-20 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | john.hutchins |
| E-post | [email protected] |
| Betalningssätt | free |
| Hjälpsida URL | https://github.com/johnhutchins/openDevConsole |
| Stödda Språk | 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"
}
} | |