Salesforce User Switcher

Salesforce User Switcher: A Chrome extension which lets you switch to another user with just one click.

Salesforce User Switcher란 무엇입니까?

Salesforce User Switcher은(는) https://amdis-services.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Salesforce User Switcher: A Chrome extension which lets you switch to another user with just one click."입니다.

확장 프로그램 스크린샷

screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This little Google Chrome extension helps Salesforce admins to login as another user.

When you work as a Salesforce administrator in orgs with lots of users you might find it difficult to login as another user. 
You not only have to navigate Setup with tons of clicks, find the correct user, login and then find your context again. Not cool...

From now on, you can use this Google Chrome extension to log in as any user directly without navigating away from the currently open Salesforce page. Additionally, you can directly access the user's settings, profile, and even their role.

Pretty awesome, right? 🥳

⭐️ Features ⭐️
◦ Query all active users with a standard Salesforce license
◦ Search the list of users by first name, last name, profile name or user role name
◦ Login as any user by a single click
◦ Directly jump into the user settings
◦ Logout again at any time and automatically get back to the page where you came from prior login
◦ Directly open User, Profile or Role in Setup

⭐️ Remarks ⭐️
⚠️ Login access policies must be configured for system administrators.

⚠️ Check Setup --> Security --> "Login Access Policies" and make sure "Administrators Can Log in as Any User" is enabled

⚠️ When you logout as a user, you might have to completely re-login again. This is a setting, which can be configured in your Salesforce org:
Check Setup --> Security --> "Session Settings" --> check if "Force relogin after Login-As-User" is unchecked                    

확장 프로그램 기본 정보

이름 Salesforce User Switcher Salesforce User Switcher
ID pbnfaealehoginodoagklmohliobpenb
공식 URL https://chromewebstore.google.com/detail/salesforce-user-switcher/pbnfaealehoginodoagklmohliobpenb
설명 Salesforce User Switcher: A Chrome extension which lets you switch to another user with just one click.
파일 크기 405 KB
설치 횟수 321
현재 버전 1.2.0.2
최근 업데이트 2023-10-06
출시 날짜 2022-11-16
평점 4.50/5 총 2 개의 평점
개발자 https://amdis-services.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/derroman/salesforce-user-switcher
도움말 페이지 URL https://github.com/derroman/salesforce-user-switcher/issues
개인정보 보호 정책 페이지 URL https://amdis-services.com/privacypolicy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Salesforce User Switcher",
    "version": "1.2.0.2",
    "description": "Salesforce User Switcher: A Chrome extension which lets you switch to another user with just one click.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Salesforce User Switcher",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "cookies"
    ],
    "host_permissions": [
        "https:\/\/*.force.com\/*",
        "https:\/\/*.salesforce.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}