Why Salesforce
Stuff that Salesforce should have added already... Adding flow and user tabs into setup.
Was ist Why Salesforce?
Why Salesforce ist eine Chrome-Erweiterung, die von https://www.salesforcementor.com entwickelt wurde, und ihr Hauptmerkmal ist "Stuff that Salesforce should have added already... Adding flow and user tabs into setup.".
Erweiterungsscreenshots
Why Salesforce-Erweiterungs-CRX-Datei herunterladen
Laden Sie Why Salesforce-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
Add custom flow and user tabs to Salesforce setup. Tired of typing in "f-l-o-w" into the setup search. There has to be a better way?! Why not use all the space in the setup tab menu that Salesforce already give us? Well that's exactly what this extension does. I don't know about you but I've probably typed in user and flow into the setup at least a thousand time and it makes me go... why Salesforce. Basically functionality that Salesforce should already have... See more at https://github.com/walters954/why-salesforce Privacy Policy: https://www.salesforcementor.com/privacy-policy-why-salesforce
Grundlegende Informationen zur Erweiterung
Name | Why Salesforce |
ID | ghakkjfjpnhpggbkfkeplbefkipfoaod |
Offizielle URL | https://chromewebstore.google.com/detail/why-salesforce/ghakkjfjpnhpggbkfkeplbefkipfoaod |
Beschreibung | Stuff that Salesforce should have added already... Adding flow and user tabs into setup. |
Dateigröße | 250 KB |
Installationsanzahl | 3,493 |
Aktuelle Version | 1.3 |
Letztes Update | 2023-08-09 |
Veröffentlichungsdatum | 2022-11-14 |
Bewertung | 5.00/5 Insgesamt 12 Bewertungen |
Entwickler | https://www.salesforcementor.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/walters954/why-salesforce |
Hilfeseite URL | https://github.com/walters954/why-salesforce |
URL der Datenschutzrichtlinien-Seite | https://www.salesforcementor.com/privacy-policy |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Why Salesforce", "version": "1.3", "permissions": [ "storage" ], "description": "Stuff that Salesforce should have added already... Adding flow and user tabs into setup.", "content_scripts": [ { "js": [ "content.js" ], "matches": [ "*:\/\/*.lightning.force.com\/lightning\/setup\/*" ], "run_at": "document_end" } ], "icons": { "16": "images\/whysf16.png", "32": "images\/whysf32.png", "48": "images\/whysf48.png", "128": "images\/whysf128.png" }, "action": { "default_title": "Why Salesforce", "default_popup": "popup.html" } } |