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.”。
擴展截圖
下載Salesforce User Switcher擴展crx文件
下載Salesforce User Switcher擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | |
ID | pbnfaealehoginodoagklmohliobpenb |
官方網址 | 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" ] } ] } |