Why Salesforce
Stuff that Salesforce should have added already... Adding flow and user tabs into setup.
Co je Why Salesforce?
Why Salesforce je rozšíření Chrome vyvinuté https://www.salesforcementor.com, a jeho hlavní funkcí je „Stuff that Salesforce should have added already... Adding flow and user tabs into setup.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Why Salesforce
Stáhněte si soubory rozšíření Why Salesforce ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Why Salesforce |
ID | ghakkjfjpnhpggbkfkeplbefkipfoaod |
Oficiální URL | https://chromewebstore.google.com/detail/why-salesforce/ghakkjfjpnhpggbkfkeplbefkipfoaod |
Popis | Stuff that Salesforce should have added already... Adding flow and user tabs into setup. |
Velikost souboru | 250 KB |
Počet instalací | 3,493 |
Aktuální Verze | 1.3 |
Poslední Aktualizace | 2023-08-09 |
Datum Vydání | 2022-11-14 |
Hodnocení | 5.00/5 Celkem 12 Hodnocení |
Vývojář | https://www.salesforcementor.com |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/walters954/why-salesforce |
URL Stránky Nápovědy | https://github.com/walters954/why-salesforce |
URL Stránky Zásad Ochrany Soukromí | https://www.salesforcementor.com/privacy-policy |
Podporované Jazyky | 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" } } |