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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | https://github.com/walters954/why-salesforce |
عنوان صفحة سياسة الخصوصية | 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" } } |