Open Salesforce Developer Console

Opens the Salesforce developer console from your currently opened Org

Apa itu Open Salesforce Developer Console?

Open Salesforce Developer Console adalah ekstensi Chrome yang dikembangkan oleh john.hutchins, dan fitur utamanya adalah "Opens the Salesforce developer console from your currently opened Org".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Open Salesforce Developer Console

Unduh file ekstensi Open Salesforce Developer Console dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama Open Salesforce Developer Console Open Salesforce Developer Console
ID dkjpcmmbikopcnmhfnhammoejckdgajb
URL Resmi https://chromewebstore.google.com/detail/open-salesforce-developer/dkjpcmmbikopcnmhfnhammoejckdgajb
Deskripsi Opens the Salesforce developer console from your currently opened Org
Ukuran File 10.94 KB
Jumlah Instalasi 84
Versi Saat Ini 3.2
Terakhir Diperbarui 2020-07-29
Tanggal Publikasi 2020-04-20
Penilaian 5.00/5 Total 1 Penilaian
Pengembang john.hutchins
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/johnhutchins/openDevConsole
Bahasa yang Didukung 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"
    }
}