Open Salesforce Developer Console

Opens the Salesforce developer console from your currently opened Org

Open Salesforce Developer Consoleとは何ですか?

Open Salesforce Developer Consoleはjohn.hutchinsによって開発されたChromeの拡張機能で、その主な機能は「Opens the Salesforce developer console from your currently opened Org」です。

拡張機能のスクリーンショット

screenshot

Open Salesforce Developer Console拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}