Open Salesforce Developer Console
Opens the Salesforce developer console from your currently opened Org
Open Salesforce Developer Console là gì?
Open Salesforce Developer Console là một tiện ích mở rộng Chrome được phát triển bởi john.hutchins, và tính năng chính của nó là "Opens the Salesforce developer console from your currently opened Org".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Open Salesforce Developer Console
Tải xuống các tệp mở rộng Open Salesforce Developer Console dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Open Salesforce Developer Console |
ID | dkjpcmmbikopcnmhfnhammoejckdgajb |
URL Chính Thức | https://chromewebstore.google.com/detail/open-salesforce-developer/dkjpcmmbikopcnmhfnhammoejckdgajb |
Mô tả | Opens the Salesforce developer console from your currently opened Org |
Kích Thước Tệp | 10.94 KB |
Số Lần Cài Đặt | 84 |
Phiên Bản Hiện Tại | 3.2 |
Cập Nhật Lần Cuối | 2020-07-29 |
Ngày Phát Hành | 2020-04-20 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | john.hutchins |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/johnhutchins/openDevConsole |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |