Salesforce Profile Reader
Lists Various Salesforce Profile Permissions
Salesforce Profile Reader란 무엇입니까?
Salesforce Profile Reader은(는) urara_extension에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Lists Various Salesforce Profile Permissions"입니다.
확장 프로그램 스크린샷
Salesforce Profile Reader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
*This extension is still in beta version. Functions may be added or deleted, or the screen design may be changed significantly. Lists various permissions for each Salesforce profile. [How To Use] When you open Salesforce, the icon for this extension will be enabled. If you click the icon, the extension screen will open in another tab. The user must have API access authority. A Salesforce session must exist at the time the extension is opened. [Main Functions] The following can be retrieved for each profile, listed, and compared on the screen: - Profile Permissions - Object Permissions - Field-Level Security - Page Layout Assignment - Apex Class Access - Visualforce Page Access - Tab Settings - App Settings - Login Restriction [SUb Functions] - Profile Filtering - Excel/CSV Export - Sortable Column - User List of the Profile *This extension does not have an update function. However, it is safe to use in a production environment. [Note] Each function makes multiple API requests for each information retrieve/reload (varies depending on the number of profiles and target functions). Please pay attention to the API usage limit. For organizations with a large number of profiles and permission management targets, it may take time to retrieve information. [Limitations] If the number of profiles is up to about 100 and the number of objects is up to about 400, it will take some time, but results can be retrieved. It is unknown whether it can be acquired in a higher environment.
확장 프로그램 기본 정보
이름 | Salesforce Profile Reader |
ID | pbecpmbbpaaibifnkknhhmigbaiaiagl |
공식 URL | https://chromewebstore.google.com/detail/salesforce-profile-reader/pbecpmbbpaaibifnkknhhmigbaiaiagl |
설명 | Lists Various Salesforce Profile Permissions |
파일 크기 | 5.47 MB |
설치 횟수 | 1,695 |
현재 버전 | 0.7.1 |
최근 업데이트 | 2023-11-13 |
출시 날짜 | 2022-11-14 |
평점 | 4.80/5 총 5 개의 평점 |
개발자 | urara_extension |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salesforce Profile Reader", "version": "0.7.1", "manifest_version": 3, "default_locale": "en", "description": "__MSG_Description__", "permissions": [ "cookies", "declarativeContent" ], "host_permissions": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.force.com\/*", "https:\/\/*.cloudforce.com\/*" ], "icons": { "128": "icons\/icon128.png" }, "action": [], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "profileReader.html" ], "matches": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.force.com\/*", "https:\/\/*.cloudforce.com\/*" ] } ], "content_security_policy": { "script-src": "self", "object-src": "self" } } |