Salesforce inspector
Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.
Was ist Salesforce inspector?
Salesforce inspector ist eine Chrome-Erweiterung, die von Søren Krabbe entwickelt wurde, und ihr Hauptmerkmal ist "Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.".
Erweiterungsscreenshots
Salesforce inspector-Erweiterungs-CRX-Datei herunterladen
Laden Sie Salesforce inspector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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)
Grundlegende Informationen zur Erweiterung
Name | Salesforce inspector |
ID | aodjmnfhjibkcdimpodiifdjnnncaafh |
Offizielle URL | https://chromewebstore.google.com/detail/salesforce-inspector/aodjmnfhjibkcdimpodiifdjnnncaafh |
Beschreibung | Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI. |
Dateigröße | 422 KB |
Installationsanzahl | 596,535 |
Aktuelle Version | 1.14 |
Letztes Update | 2022-12-22 |
Veröffentlichungsdatum | 2020-05-14 |
Bewertung | 4.81/5 Insgesamt 300 Bewertungen |
Entwickler | Søren Krabbe |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/sorenkrabbe/Chrome-Salesforce-inspector |
Hilfeseite URL | https://github.com/sorenkrabbe/Chrome-Salesforce-inspector |
URL der Datenschutzrichtlinien-Seite | https://github.com/sorenkrabbe/Chrome-Salesforce-inspector |
Unterstützte Sprachen | 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 } |