Salesforce Profile Reader

Lists Various Salesforce Profile Permissions

Salesforce Profile Readerคืออะไร?

Salesforce Profile Reader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย urara_extension และคุณลักษณะหลักของมันคือ "Lists Various Salesforce Profile Permissions"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Profile Reader

ดาวน์โหลดไฟล์ส่วนขยาย Salesforce Profile Reader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        *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 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"
    }
}