Salesforce inspector

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

Cos'è Salesforce inspector?

Salesforce inspector è un'estensione di Chrome sviluppata da Søren Krabbe, e la sua funzione principale è "Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Salesforce inspector

Scarica i file di estensione Salesforce inspector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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)                    

Informazioni di Base sull'Estensione

Nome Salesforce inspector Salesforce inspector
ID aodjmnfhjibkcdimpodiifdjnnncaafh
URL Ufficiale https://chromewebstore.google.com/detail/salesforce-inspector/aodjmnfhjibkcdimpodiifdjnnncaafh
Descrizione Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.
Dimensione del File 422 KB
Conteggio Installazioni 596,535
Versione Corrente 1.14
Ultimo Aggiornamento 2022-12-22
Data di Pubblicazione 2020-05-14
Valutazione 4.81/5 Totale 300 Valutazioni
Sviluppatore Søren Krabbe
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sorenkrabbe/Chrome-Salesforce-inspector
URL della Pagina di Aiuto https://github.com/sorenkrabbe/Chrome-Salesforce-inspector
URL della Pagina della Politica sulla Privacy https://github.com/sorenkrabbe/Chrome-Salesforce-inspector
Lingue Supportate 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
}