Open Salesforce Developer Console

Opens the Salesforce developer console from your currently opened Org

Что такое Open Salesforce Developer Console?

Open Salesforce Developer Console - это расширение Chrome, разработанное john.hutchins, и его основная функция - "Opens the Salesforce developer console from your currently opened Org".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Open Salesforce Developer Console

Скачайте файлы расширений Open Salesforce Developer Console в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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!                    

Основная информация о расширении

Название Open Salesforce Developer Console Open Salesforce Developer Console
ID dkjpcmmbikopcnmhfnhammoejckdgajb
Официальный URL https://chromewebstore.google.com/detail/open-salesforce-developer/dkjpcmmbikopcnmhfnhammoejckdgajb
Описание Opens the Salesforce developer console from your currently opened Org
Размер файла 10.94 KB
Количество установок 84
Текущая Версия 3.2
Последнее Обновление 2020-07-29
Дата публикации 2020-04-20
Рейтинг 5.00/5 Всего 1 оценок
Разработчик john.hutchins
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/johnhutchins/openDevConsole
Поддерживаемые языки 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"
    }
}