Salesforce Inspector reloaded

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

Salesforce Inspector reloadedคืออะไร?

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

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension is based on the original Salesforce inspector extension made by Søren Krabbe.

Salesforce Inspector Reloaded contains lots of new features:

- Enable Logs from User tab
- New Option page
- New Org tab
- "What's new" banner
- Search for a particular flow, profile or permission set from Shortcut tab
- Restrict Salesforce Inspector usage with a default connected app
- New "Shortcut" tab to quickly access setup menu 
- Link to permission sets assignment from User tab

And many more !

https://tprouvot.github.io/Salesforce-Inspector-reloaded/                    

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

ชื่อ Salesforce Inspector reloaded Salesforce Inspector reloaded
ID hpijlohoihegkfehhibggnkbjhoemldh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/salesforce-inspector-relo/hpijlohoihegkfehhibggnkbjhoemldh
คำอธิบาย Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.
ขนาดไฟล์ 874 KB
จำนวนการติดตั้ง 40,000
เวอร์ชันปัจจุบัน 1.22
อัปเดตครั้งล่าสุด 2024-03-04
วันที่เผยแพร่ 2023-03-27
คะแนน 4.82/5 รวมทั้งหมด 61 คะแนน
ผู้พัฒนา Thomas Prouvot
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://tprouvot.github.io/Salesforce-Inspector-reloaded/
URL หน้าช่วยเหลือ https://github.com/tprouvot/Chrome-Salesforce-inspector/issues
URL หน้านโยบายความเป็นส่วนตัว https://github.com/tprouvot/Salesforce-Inspector-reloaded/blob/master/PRIVACY.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Salesforce Inspector reloaded",
    "description": "Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.",
    "version": "1.22",
    "version_name": "1.22",
    "icons": {
        "128": "icon128.png"
    },
    "minimum_chrome_version": "88",
    "permissions": [
        "cookies"
    ],
    "host_permissions": [
        "https:\/\/*.salesforce.com\/*",
        "https:\/\/*.force.com\/*",
        "https:\/\/*.cloudforce.com\/*",
        "https:\/\/*.visualforce.com\/*",
        "https:\/\/*.sfcrmapps.cn\/*",
        "https:\/\/*.sfcrmproducts.cn\/*",
        "https:\/\/*.salesforce.mil\/*",
        "https:\/\/*.force.mil\/*",
        "https:\/\/*.cloudforce.mil\/*",
        "https:\/\/*.visualforce.mil\/*",
        "https:\/\/*.crmforce.mil\/*",
        "https:\/\/*.force.com.mcas.ms\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.visual.force.com\/*",
                "https:\/\/*.vf.force.com\/*",
                "https:\/\/*.lightning.force.com\/*",
                "https:\/\/*.cloudforce.com\/*",
                "https:\/\/*.visualforce.com\/*",
                "https:\/\/*.sfcrmapps.cn\/*",
                "https:\/\/*.sfcrmproducts.cn\/*",
                "https:\/\/*.salesforce.mil\/*",
                "https:\/\/*.visual.force.mil\/*",
                "https:\/\/*.vf.force.mil\/*",
                "https:\/\/*.lightning.force.mil\/*",
                "https:\/\/*.cloudforce.mil\/*",
                "https:\/\/*.visualforce.mil\/*",
                "https:\/\/*.crmforce.mil\/*",
                "https:\/\/*.lightning.force.com.mcas.ms\/*"
            ],
            "all_frames": true,
            "css": [
                "button.css",
                "inspect-inline.css"
            ],
            "js": [
                "button.js",
                "inspect-inline.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "popup.html",
                "data-export.html",
                "data-import.html",
                "inspect.html",
                "metadata-retrieve.html",
                "explore-api.html",
                "limits.html",
                "options.html"
            ],
            "matches": [
                "https:\/\/*\/*"
            ],
            "extension_ids": []
        }
    ],
    "incognito": "split",
    "manifest_version": 3
}