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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Workbench Tools for Google Chrome™ 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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™ Workbench Tools for Google Chrome™
ID nanhambbggdgkloeldahjngdmngjgmhk
공식 URL 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"
    }
}