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
}