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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://amdis-services.com, και η κύρια λειτουργία του είναι "Salesforce User Switcher: A Chrome extension which lets you switch to another user with just one click.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Salesforce User Switcher

Λήψη αρχείων επέκτασης 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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα 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"
            ]
        }
    ]
}