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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    }
}