Why Salesforce
Stuff that Salesforce should have added already... Adding flow and user tabs into setup.
O que é Why Salesforce?
Why Salesforce é uma extensão do Chrome desenvolvida por https://www.salesforcementor.com, e sua principal característica é "Stuff that Salesforce should have added already... Adding flow and user tabs into setup.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Why Salesforce
Baixe arquivos de extensão Why Salesforce no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Why Salesforce |
ID | ghakkjfjpnhpggbkfkeplbefkipfoaod |
URL Oficial | https://chromewebstore.google.com/detail/why-salesforce/ghakkjfjpnhpggbkfkeplbefkipfoaod |
Descrição | Stuff that Salesforce should have added already... Adding flow and user tabs into setup. |
Tamanho do Arquivo | 250 KB |
Contagem de Instalações | 3,493 |
Versão Atual | 1.3 |
Última Atualização | 2023-08-09 |
Data de Publicação | 2022-11-14 |
Classificação | 5.00/5 Total de 12 Avaliações |
Desenvolvedor | https://www.salesforcementor.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/walters954/why-salesforce |
URL da Página de Ajuda | https://github.com/walters954/why-salesforce |
URL da Página de Política de Privacidade | https://www.salesforcementor.com/privacy-policy |
Idiomas Suportados | 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" } } |