Why Salesforce
Stuff that Salesforce should have added already... Adding flow and user tabs into setup.
Co to jest Why Salesforce?
Why Salesforce to rozszerzenie Chrome opracowane przez https://www.salesforcementor.com, a jego główną funkcją jest „Stuff that Salesforce should have added already... Adding flow and user tabs into setup.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Why Salesforce
Pobierz pliki rozszerzeń Why Salesforce w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Why Salesforce |
ID | ghakkjfjpnhpggbkfkeplbefkipfoaod |
Oficjalny URL | https://chromewebstore.google.com/detail/why-salesforce/ghakkjfjpnhpggbkfkeplbefkipfoaod |
Opis | Stuff that Salesforce should have added already... Adding flow and user tabs into setup. |
Rozmiar pliku | 250 KB |
Liczba instalacji | 3,493 |
Aktualna Wersja | 1.3 |
Ostatnia Aktualizacja | 2023-08-09 |
Data Publikacji | 2022-11-14 |
Ocena | 5.00/5 Łącznie 12 Oceny |
Deweloper | https://www.salesforcementor.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/walters954/why-salesforce |
Adres URL Strony Pomocy | https://github.com/walters954/why-salesforce |
Adres URL Strony Polityki Prywatności | https://www.salesforcementor.com/privacy-policy |
Obsługiwane Języki | 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" } } |