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"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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" } } |