Salesforce inspector

Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.

Salesforce inspectorคืออะไร?

Salesforce inspector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Søren Krabbe และคุณลักษณะหลักของมันคือ "Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Extension to add a metadata layout on top of the standard Salesforce UI to improve the productivity and joy of Salesforce configuration, development, and integration work.

See more at https://github.com/sorenkrabbe/Chrome-Salesforce-inspector (also available for firefox)                    

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

ชื่อ Salesforce inspector Salesforce inspector
ID aodjmnfhjibkcdimpodiifdjnnncaafh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/salesforce-inspector/aodjmnfhjibkcdimpodiifdjnnncaafh
คำอธิบาย Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.
ขนาดไฟล์ 422 KB
จำนวนการติดตั้ง 596,535
เวอร์ชันปัจจุบัน 1.14
อัปเดตครั้งล่าสุด 2022-12-22
วันที่เผยแพร่ 2020-05-14
คะแนน 4.81/5 รวมทั้งหมด 300 คะแนน
ผู้พัฒนา Søren Krabbe
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sorenkrabbe/Chrome-Salesforce-inspector
URL หน้าช่วยเหลือ https://github.com/sorenkrabbe/Chrome-Salesforce-inspector
URL หน้านโยบายความเป็นส่วนตัว https://github.com/sorenkrabbe/Chrome-Salesforce-inspector
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Salesforce inspector",
    "description": "Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.",
    "version": "1.14",
    "icons": {
        "128": "icon128.png"
    },
    "minimum_chrome_version": "61",
    "permissions": [
        "https:\/\/*.salesforce.com\/*",
        "https:\/\/*.force.com\/*",
        "https:\/\/*.cloudforce.com\/*",
        "https:\/\/*.visualforce.com\/*",
        "cookies"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.visual.force.com\/*",
                "https:\/\/*.lightning.force.com\/*",
                "https:\/\/*.cloudforce.com\/*",
                "https:\/\/*.visualforce.com\/*"
            ],
            "all_frames": true,
            "css": [
                "button.css",
                "inspect-inline.css"
            ],
            "js": [
                "button.js",
                "inspect-inline.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "popup.html",
        "data-export.html",
        "data-import.html",
        "inspect.html",
        "metadata-retrieve.html",
        "explore-api.html",
        "limits.html"
    ],
    "incognito": "split",
    "manifest_version": 2
}