Why Salesforce
Stuff that Salesforce should have added already... Adding flow and user tabs into setup.
Что такое Why Salesforce?
Why Salesforce - это расширение Chrome, разработанное https://www.salesforcementor.com, и его основная функция - "Stuff that Salesforce should have added already... Adding flow and user tabs into setup.".
Снимки экрана расширения
Скачать файл CRX расширения Why Salesforce
Скачайте файлы расширений Why Salesforce в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | Why Salesforce |
ID | ghakkjfjpnhpggbkfkeplbefkipfoaod |
Официальный URL | https://chromewebstore.google.com/detail/why-salesforce/ghakkjfjpnhpggbkfkeplbefkipfoaod |
Описание | Stuff that Salesforce should have added already... Adding flow and user tabs into setup. |
Размер файла | 250 KB |
Количество установок | 3,493 |
Текущая Версия | 1.3 |
Последнее Обновление | 2023-08-09 |
Дата публикации | 2022-11-14 |
Рейтинг | 5.00/5 Всего 12 оценок |
Разработчик | https://www.salesforcementor.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/walters954/why-salesforce |
URL страницы помощи | https://github.com/walters954/why-salesforce |
URL страницы политики конфиденциальности | https://www.salesforcementor.com/privacy-policy |
Поддерживаемые языки | 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" } } |