Salesforce inspector
Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.
Hvad er Salesforce inspector?
Salesforce inspector er en Chrome-udvidelse udviklet af Søren Krabbe, og dens hovedfunktion er "Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.".
Udvidelsesskærmbilleder
Download Salesforce inspector-udvidelses-CRX-fil
Download Salesforce inspector-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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)
Grundlæggende oplysninger om udvidelsen
Navn | Salesforce inspector |
ID | aodjmnfhjibkcdimpodiifdjnnncaafh |
Officiel URL | https://chromewebstore.google.com/detail/salesforce-inspector/aodjmnfhjibkcdimpodiifdjnnncaafh |
Beskrivelse | Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI. |
Filstørrelse | 422 KB |
Antal Installationer | 596,535 |
Nuværende Version | 1.14 |
Senest Opdateret | 2022-12-22 |
Udgivelsesdato | 2020-05-14 |
Bedømmelse | 4.81/5 Samlet 300 Bedømmelser |
Udvikler | Søren Krabbe |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/sorenkrabbe/Chrome-Salesforce-inspector |
Hjælpeside-URL | https://github.com/sorenkrabbe/Chrome-Salesforce-inspector |
URL til Fortrolighedspolitik Side | https://github.com/sorenkrabbe/Chrome-Salesforce-inspector |
Understøttede Sprog | 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 } |