Profile Comparator for Salesforce

Compare User Profiles in Salesforce

Profile Comparator for Salesforce là gì?

Profile Comparator for Salesforce là một tiện ích mở rộng Chrome được phát triển bởi Rajiv Bhatt, và tính năng chính của nó là "Compare User Profiles in Salesforce".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Profile Comparator for Salesforce

Tải xuống các tệp mở rộng Profile Comparator for Salesforce dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        DO NOT INSTALL! DOES NOT WORK... NEED HELP TO FIX THIS! Reach out to me if you can.. thanks!!

Compare Salesforce user profiles and see all differences in just four clicks!

This extension can compare any two salesforce profiles (could be from same org or different orgs) and highlights all the differences. 

8th Feb 2015 FIX UPDATE: Received a lot of complaints reg. differences not showing up. Investigated this and the root cause seemed to be the empty data cells in certain sections on the profile. This is now fixed and should work in all the orgs. Please let me know if you still face any issues.

Steps to compare profile:  

First of all you need to make sure that the "Enable Enhanced Profile User Interface" setting is disabled in your org. This extension will work only if this setting is "unchecked".

 To disable this setting, goto Setup -> Customize -> User Interface
Under "Setup" section you should see the setting "Enable Enhanced Profile User Interface". Please uncheck it and then save the settings. 


1. Open up a profile on salesforce.  This is your source profile. Click on the extension icon and then click on the "Select Source Profile" button. This tells the extensions that this is your "source profile"

2. After that, open up another profile (could be from same org or different org). This is your target profile. Click on the extension icon and then click on the "Select Target Profile" button. This tells the extensions that this is your "source profile"

3. The extension would compare the "source" and "target" profile that you had selected and then show you the count of differences that were found (all the settings on the target page which did not match the settings on the source page). On the target profile page, it would highlight all the fields (in red) where the differences were found. You might want to scroll through the entire page to find out in which section the differences were found. Still working on providing section names in the message.


The following settings from the profile page would be compared: 

- Custom App Settings
- Standard Tab Settings
- Custom Tab Settings
- Standard Record Type Settings
- Custom Record Type Settings
- Administrative Permissions
- General User Permissions
- Standard Object Permissions
- Custom Object Permissions
- Connected App Access
- Service Provider Acess
- Apex Class Access
- Visualforce Page Access


Do recommend the extension with you friends and colleagues if you like it.

Also, if you like the extension, please don't forget to Rate it on the Chrome Extension Webstore.

Feedback/Suggestions/Ideas/Comments most welcome.

Thanks again and I hope this extension saves your time and makes you more productive!

For any queries: [email protected]                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Profile Comparator for Salesforce Profile Comparator for Salesforce
ID ijbipklcimjilmnaffocmjkfddhpaadg
URL Chính Thức https://chrome.google.com/webstore/detail/profile-comparator-for-sa/ijbipklcimjilmnaffocmjkfddhpaadg
Mô tả Compare User Profiles in Salesforce
Kích Thước Tệp 55.34 KB
Số Lần Cài Đặt 3,000
Phiên Bản Hiện Tại 0.0.0.5
Cập Nhật Lần Cuối 2018-02-08
Ngày Phát Hành 2018-02-08
Đánh Giá 2.62/5 Tổng số 52 Đánh Giá
Nhà Phát Triển Rajiv Bhatt
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Profile Comparator for Salesforce",
    "short_name": "Salesforce Profile Comparator",
    "version": "0.0.0.5",
    "manifest_version": 2,
    "description": "Compare User Profiles in Salesforce",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "sfprodiff16x16.png",
        "19": "sfprodiff19x19.png",
        "48": "sfprodiff48x48.png",
        "128": "sfprodiff128x128.png"
    },
    "permissions": [
        "https:\/\/*.salesforce.com\/",
        "tabs",
        "declarativeContent"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "page_action": {
        "default_name": "Profile Comparator for Salesforce",
        "default_icon": "sfprodiff16x16.png",
        "default_popup": "popup.html"
    }
}