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™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Christophe Vidal และคุณลักษณะหลักของมันคือ "Google Chrome™ extension for logging into Workbench from an active Salesforce session."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Workbench Tools for Google Chrome™

ดาวน์โหลดไฟล์ส่วนขยาย 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™ 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"
    }
}