Why Salesforce
Stuff that Salesforce should have added already... Adding flow and user tabs into setup.
Vad är Why Salesforce?
Why Salesforce är en Chrome-tillägg utvecklad av https://www.salesforcementor.com, och dess huvudfunktion är "Stuff that Salesforce should have added already... Adding flow and user tabs into setup.".
Tilläggsskärmbilder
Ladda ner Why Salesforce-förlängningens CRX-fil
Ladda ner Why Salesforce-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Why Salesforce |
ID | ghakkjfjpnhpggbkfkeplbefkipfoaod |
Officiell webbadress | https://chromewebstore.google.com/detail/why-salesforce/ghakkjfjpnhpggbkfkeplbefkipfoaod |
Beskrivning | Stuff that Salesforce should have added already... Adding flow and user tabs into setup. |
Filstorlek | 250 KB |
Antal Installationer | 3,493 |
Aktuell Version | 1.3 |
Senast Uppdaterad | 2023-08-09 |
Publiceringsdatum | 2022-11-14 |
Betyg | 5.00/5 Totalt 12 Betyg |
Utvecklare | https://www.salesforcementor.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/walters954/why-salesforce |
Hjälpsida URL | https://github.com/walters954/why-salesforce |
URL till Sekretesspolicy Sidan | https://www.salesforcementor.com/privacy-policy |
Stödda Språk | 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" } } |