Salesforce inspector

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

Wat is Salesforce inspector?

Salesforce inspector is een Chrome-extensie ontwikkeld door Søren Krabbe, en de belangrijkste functie is "Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Salesforce inspector

Download Salesforce inspector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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)                    

Basisinformatie over de Extensie

Naam Salesforce inspector Salesforce inspector
ID aodjmnfhjibkcdimpodiifdjnnncaafh
Officiële URL https://chromewebstore.google.com/detail/salesforce-inspector/aodjmnfhjibkcdimpodiifdjnnncaafh
Beschrijving Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.
Bestandsgrootte 422 KB
Aantal Installaties 596,535
Huidige Versie 1.14
Laatst Bijgewerkt 2022-12-22
Publicatiedatum 2020-05-14
Beoordeling 4.81/5 Totaal 300 Beoordelingen
Ontwikkelaar Søren Krabbe
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/sorenkrabbe/Chrome-Salesforce-inspector
Help Pagina-URL https://github.com/sorenkrabbe/Chrome-Salesforce-inspector
URL van de Privacybeleid Pagina https://github.com/sorenkrabbe/Chrome-Salesforce-inspector
Ondersteunde Talen 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
}