Workbench Extension

Add functionalities to Workbench!

Workbench Extensionคืออะไร?

Workbench Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Baptiste BIEBER และคุณลักษณะหลักของมันคือ "Add functionalities to Workbench!"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Workbench Extension

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

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

                        Some new functionalities form the Salesforce Workbench application (https://workbench.developerforce.com/):
- Resize the window
- Query page: checkbox for fields selection. Paste a request, click "Refresh" => that fill the form. Searching filter. Download displayed result (JSON & CSV)
- Execute page: saving scripts to load easier later.

2023-05-04 (v1.5.1):
- Remove cookies & tabs permissions

2018-10-30 (v1.5.0):
Functionality:
- Save script into the Execute page

2018-10-26 (v1.4.0):
Functionality:
- Download the result displayed on the page. Two format: JSON & CSV
Bug:
- After query, field not displayed.                    

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

ชื่อ Workbench Extension Workbench Extension
ID bdmeigkhhgcjckkgiiipehdagjdlkddj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/workbench-extension/bdmeigkhhgcjckkgiiipehdagjdlkddj
คำอธิบาย Add functionalities to Workbench!
ขนาดไฟล์ 196 KB
จำนวนการติดตั้ง 155
เวอร์ชันปัจจุบัน 1.5.1
อัปเดตครั้งล่าสุด 2023-05-06
วันที่เผยแพร่ 2018-10-30
ผู้พัฒนา Baptiste BIEBER
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/baptistebieber/workbench-extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Workbench Extension",
    "version": "1.5.1",
    "author": "Baptiste BIEBER",
    "description": "Add functionalities to Workbench!",
    "homepage_url": "https:\/\/github.com\/baptistebieber\/workbench-extension",
    "icons": {
        "16": "img\/icon-16.png",
        "32": "img\/icon-32.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "action": {
        "default_icon": "img\/icon-16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/workbench.developerforce.com\/*"
            ],
            "js": [
                "js\/jquery.min.js"
            ],
            "css": [
                "css\/style.css"
            ]
        },
        {
            "matches": [
                "https:\/\/workbench.developerforce.com\/query.php*"
            ],
            "js": [
                "js\/query.js"
            ],
            "css": [
                "css\/query.css"
            ]
        },
        {
            "matches": [
                "https:\/\/workbench.developerforce.com\/execute.php*"
            ],
            "js": [
                "js\/execute.js"
            ],
            "css": [
                "css\/execute.css"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/workbench.developerforce.com\/*"
    ]
}