Salesforce inspector

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

Co to jest Salesforce inspector?

Salesforce inspector to rozszerzenie Chrome opracowane przez Søren Krabbe, a jego główną funkcją jest „Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Salesforce inspector

Pobierz pliki rozszerzeń Salesforce inspector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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)                    

Podstawowe informacje o rozszerzeniu

Nazwa Salesforce inspector Salesforce inspector
ID aodjmnfhjibkcdimpodiifdjnnncaafh
Oficjalny URL https://chromewebstore.google.com/detail/salesforce-inspector/aodjmnfhjibkcdimpodiifdjnnncaafh
Opis Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.
Rozmiar pliku 422 KB
Liczba instalacji 596,535
Aktualna Wersja 1.14
Ostatnia Aktualizacja 2022-12-22
Data Publikacji 2020-05-14
Ocena 4.81/5 Łącznie 300 Oceny
Deweloper Søren Krabbe
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/sorenkrabbe/Chrome-Salesforce-inspector
Adres URL Strony Pomocy https://github.com/sorenkrabbe/Chrome-Salesforce-inspector
Adres URL Strony Polityki Prywatności https://github.com/sorenkrabbe/Chrome-Salesforce-inspector
Obsługiwane Języki 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
}