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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://github.com/sorenkrabbe/Chrome-Salesforce-inspector
عنوان صفحة سياسة الخصوصية 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
}