Salesforce WorkBench v2.0

Adds WorkBench icon to the Tool Bar. Logs you into the Salesforce Workbench in one click. Created by Karthik Premnath

Salesforce WorkBench v2.0คืออะไร?

Salesforce WorkBench v2.0 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Karthik Premnath และคุณลักษณะหลักของมันคือ "Adds WorkBench icon to the Tool Bar. Logs you into the Salesforce Workbench in one click. Created by Karthik Premnath"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce WorkBench v2.0

ดาวน์โหลดไฟล์ส่วนขยาย Salesforce WorkBench v2.0 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This is a new workbench extension which logs you into the Workbench in one click.
Updated, tested and works for Google Chrome and Microsoft Edge.

After you install you need to set the workbench base url, if the login url is https://workbench.developer.com/login.php then enter base url as https://workbench.developer.com

If you need to access the Options menu in the future, right-click on the toolbar button.

Note: 
This extension is not compatible with workbench.developerforce.com server due to terms of service agreement and login CSRF requirements.

Host your workbench server by following this link: https://github.com/forceworkbench/forceworkbench#getting-started and provide the base url.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Salesforce WorkBench v2.0 Salesforce WorkBench v2.0
ID plpkbdfpfehnkbjgjgnpfnmohgcdiagd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/salesforce-workbench-v20/plpkbdfpfehnkbjgjgnpfnmohgcdiagd
คำอธิบาย Adds WorkBench icon to the Tool Bar. Logs you into the Salesforce Workbench in one click. Created by Karthik Premnath
ขนาดไฟล์ 28.88 KB
จำนวนการติดตั้ง 1,407
เวอร์ชันปัจจุบัน 2.5
อัปเดตครั้งล่าสุด 2021-03-05
วันที่เผยแพร่ 2019-08-21
คะแนน 4.40/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Karthik Premnath
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/quickstart_using_workbench.htm
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Karthik Premnath",
    "name": "Salesforce WorkBench v2.0",
    "description": "Adds WorkBench icon to the Tool Bar. Logs you into the Salesforce Workbench in one click. Created by Karthik Premnath",
    "version": "2.5",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "manifest_version": 2,
    "icons": {
        "16": "workbench-3-cube-16x16.png",
        "48": "workbench-3-cube-48x48.png",
        "128": "workbench-3-cube-128x128.png"
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "cookies",
        "tabs",
        "https:\/\/*.salesforce.com\/*",
        "https:\/\/*.force.com\/*",
        "http:\/\/*.salesforce.com\/*",
        "http:\/\/*.force.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.force.com\/*",
                "http:\/\/*.salesforce.com\/*",
                "http:\/\/*.force.com\/*"
            ],
            "js": [
                "showPageAction.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "page_action": {
        "default_title": "Login to Workbench from Salesforce",
        "default_icon": "workbench-3-cube-48x48.png"
    }
}