SUPR - Salesforce User Permission Report

Salesforce User Permission Report allows you to see a report of all the permissions a user has and where they are set.

SUPR - Salesforce User Permission Report क्या है?

SUPR - Salesforce User Permission Report Aurel Hudec द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Salesforce User Permission Report allows you to see a report of all the permissions a user has and where they are set."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SUPR - Salesforce User Permission Report एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        DESCRIPTION
This tool reads all of the user's Profile and Permission Set metadata, merges it, and presents it in a single view allowing busy admins and developers to quickly troubleshoot security and permission issues!

FEATURES
 - Search
 - Dark mode
 - Intuitive tree view
 - Toggle managed metadata
 - Permission Set Group support
 - Consolidated view of user permissions
 - Compatible with Classic and Lightning Experience

SECURITY/PRIVACY
No data is stored by the extension in the browser (apart from in-memory during use) and no data is transferred to third-party (i.e. non-Salesforce) servers. All communication is secured using HTTPS/TLS, so in theory the unencrypted (plain text) data is only visible in your Salesforce org and in the extension when it is used.

A network request is made to the SOAP API's getUserInfo resource which may contain the running user's PII as described here: https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_calls_getuserinfo.htm

The only other piece of PII is the target user's username which is queried and displayed on the refresh button.                    

एक्सटेंशन की मूल जानकारी

नाम SUPR - Salesforce User Permission Report SUPR - Salesforce User Permission Report
ID gkibdicghcpcikhjpgjoijpobdipklnp
आधिकारिक URL https://chromewebstore.google.com/detail/supr-salesforce-user-perm/gkibdicghcpcikhjpgjoijpobdipklnp
विवरण Salesforce User Permission Report allows you to see a report of all the permissions a user has and where they are set.
फ़ाइल का आकार 293 KB
स्थापना संख्या 818
वर्तमान संस्करण 1.2.4
अंतिम अपडेट 2024-02-29
प्रकाशन तिथि 2021-02-15
रेटिंग 3.75/5 कुल 4 रेटिंग्स
डेवलपर Aurel Hudec
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/hudec117/sf-user-perm-report
सहायता पृष्ठ URL https://github.com/hudec117/sf-user-perm-report#support
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SUPR - Salesforce User Permission Report",
    "short_name": "SUPR",
    "description": "Salesforce User Permission Report allows you to see a report of all the permissions a user has and where they are set.",
    "version": "1.2.4",
    "author": "Aurel Hudec",
    "homepage_url": "https:\/\/github.com\/hudec117\/sf-user-perm-report",
    "incognito": "split",
    "minimum_chrome_version": "88",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/16-icon.png",
        "32": "icons\/32-icon.png",
        "48": "icons\/48-icon.png",
        "128": "icons\/128-icon.png"
    },
    "permissions": [
        "cookies"
    ],
    "host_permissions": [
        "https:\/\/*.my.salesforce.com\/"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.my.salesforce.com\/*"
            ],
            "all_frames": true,
            "js": [
                "content-script.js"
            ]
        }
    ]
}