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."입니다.

확장 프로그램 스크린샷

screenshot

Why Salesforce 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    }
}