Workbench Tools for Google Chrome™
Google Chrome™ extension for logging into Workbench from an active Salesforce session.
什麼是Workbench Tools for Google Chrome™?
Workbench Tools for Google Chrome™是由Christophe Vidal開發的Chrome擴展程式,該擴展的主要功能是“Google Chrome™ extension for logging into Workbench from an active Salesforce session.”。
擴展截圖
下載Workbench Tools for Google Chrome™擴展crx文件
下載Workbench Tools for Google Chrome™擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Extension to log you into the Salesforce Workbench in one click from Google Chrome or Brave. This is *NOT* the Workbench itself. For information on how to install the Workbench, please refer to the Github repository (which is now in maintenance only mode) https://github.com/forceworkbench/forceworkbench Once you have installed the Workbench locally, for the extension to work, you have to set the base URL of the Workbench by clicking on "options" like shown on the Screenshot. If you want to browse the source code, or log issues, or simply star the repository, please come here https://github.com/Krisa/Salesforce-Workbench
擴展基本資訊
名稱 | Workbench Tools for Google Chrome™ |
ID | nanhambbggdgkloeldahjngdmngjgmhk |
官方網址 | https://chromewebstore.google.com/detail/workbench-tools-for-googl/nanhambbggdgkloeldahjngdmngjgmhk |
簡介 | Google Chrome™ extension for logging into Workbench from an active Salesforce session. |
檔案大小 | 29.12 KB |
安裝次數 | 4,826 |
目前版本 | 1.4.0 |
更新時間 | 2023-01-25 |
上架時間 | 2018-07-12 |
評分 | 3.21/5 共 14 次評分 |
開發者 | Christophe Vidal |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/Krisa/Salesforce-Workbench |
說明頁面URL | https://github.com/Krisa/Salesforce-Workbench |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Workbench Tools for Google Chrome\u2122", "description": "Google Chrome\u2122 extension for logging into Workbench from an active Salesforce session.", "version": "1.4.0", "background": { "service_worker": "background.js" }, "manifest_version": 3, "icons": { "48": "workbench-3-black-cube-48x48.png", "128": "workbench-3-cube-128x128.png" }, "options_page": "options.html", "permissions": [ "cookies", "declarativeContent", "notifications", "scripting", "storage", "tabs" ], "host_permissions": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.force.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.force.com\/*" ], "js": [ "showPageAction.js" ], "run_at": "document_end", "all_frames": false } ], "action": { "default_title": "Login to Workbench from Salesforce", "default_icon": "workbench-3-black-cube-48x48.png" } } |