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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" ] } ] } |