Why Salesforce
Stuff that Salesforce should have added already... Adding flow and user tabs into setup.
什麼是Why Salesforce?
Why Salesforce是由https://www.salesforcementor.com開發的Chrome擴展程式,該擴展的主要功能是“Stuff that Salesforce should have added already... Adding flow and user tabs into setup.”。
擴展截圖
下載Why Salesforce擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | ghakkjfjpnhpggbkfkeplbefkipfoaod |
| 官方網址 | 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"
}
} | |