Why Salesforce
Stuff that Salesforce should have added already... Adding flow and user tabs into setup.
Hvad er Why Salesforce?
Why Salesforce er en Chrome-udvidelse udviklet af https://www.salesforcementor.com, og dens hovedfunktion er "Stuff that Salesforce should have added already... Adding flow and user tabs into setup.".
Udvidelsesskærmbilleder
Download Why Salesforce-udvidelses-CRX-fil
Download Why Salesforce-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
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | ghakkjfjpnhpggbkfkeplbefkipfoaod |
| Officiel URL | https://chromewebstore.google.com/detail/why-salesforce/ghakkjfjpnhpggbkfkeplbefkipfoaod |
| Beskrivelse | Stuff that Salesforce should have added already... Adding flow and user tabs into setup. |
| Filstørrelse | 250 KB |
| Antal Installationer | 3,493 |
| Nuværende Version | 1.3 |
| Senest Opdateret | 2023-08-09 |
| Udgivelsesdato | 2022-11-14 |
| Bedømmelse | 5.00/5 Samlet 12 Bedømmelser |
| Udvikler | https://www.salesforcementor.com |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/walters954/why-salesforce |
| Hjælpeside-URL | https://github.com/walters954/why-salesforce |
| URL til Fortrolighedspolitik Side | https://www.salesforcementor.com/privacy-policy |
| Understøttede Sprog | 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"
}
} | |