Record and Metadata Comparator for Salesforce

Compare Record data values and object metadata in Salesforce

Record and Metadata Comparator for Salesforce là gì?

Record and Metadata 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 Record data values and object metadata 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 Record and Metadata Comparator for Salesforce

Tải xuống các tệp mở rộng Record and Metadata 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

                        Compare Object Metadata and it's record values in Salesforce (now supports Lightning!) and see all differences in just four clicks!

Credits:
1. sorenkrabbe for his extension "salesforce-inspector" available @ https://chrome.google.com/webstore/detail/salesforce-inspector/aodjmnfhjibkcdimpodiifdjnnncaafh
I have used the code shared by him to improvise and develop this extension. I would share the code of this extension on github soon.

2. Maninder Singh for enabling the extension to work in Lightning -https://www.linkedin.com/in/mansinghinder/

This extension compares any two objects or its records (could be from same org or different orgs) and highlights all the differences found. It can show you the following

- Which fields are missing in target org.
- Which fields are missing in source org
- which fields have metadata difference (change in formula, datatype , required etc.)
- which fields have data value mismatch

Please watch the video tutorial available @ http://youtu.be/mkarbbYWveY to understand the exact functionality and its uses.

Steps to compare Object Metadata:

1. Open up the custom object definition or it's list view or any of it's record in salesforce.  This is your source record. Click on the extension icon and then click on the "Select Source Record" button.

2. After that, open up the custom definition of the same object or it's list view or the record (could be from same org or different org). This is your target record. Click on the extension icon and then click on the "Select Target record" button. 

3. The extension would create a popup and in that show you all the differences that were found. 

Steps to compare Record Values:
1. open any record from a standard/custom object in one org. This is your source record. Click on the extension icon and then click on the "Select Source Record" button.
2. After that, open up any other record for the same object (could be from same org or different org). This is your target record. Click on the extension icon and then click on the "Select Target record" button. 
3. The extension would create a popup and in that show you all the differences that were found. 

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 Record and Metadata Comparator for Salesforce Record and Metadata Comparator for Salesforce
ID laghgcpekjofijkmojnhfeiplbffaljp
URL Chính Thức https://chromewebstore.google.com/detail/record-and-metadata-compa/laghgcpekjofijkmojnhfeiplbffaljp
Mô tả Compare Record data values and object metadata in Salesforce
Kích Thước Tệp 65.29 KB
Số Lần Cài Đặt 7,182
Phiên Bản Hiện Tại 0.0.0.8
Cập Nhật Lần Cuối 2020-02-04
Ngày Phát Hành 2020-01-30
Đánh Giá 4.66/5 Tổng số 41 Đánh Giá
Nhà Phát Triển Rajiv Bhatt
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Record and Metadata Comparator for Salesforce",
    "short_name": "Salesforce Record and Metadata Comparator",
    "version": "0.0.0.8",
    "manifest_version": 2,
    "description": "Compare Record data values and object metadata in Salesforce",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "sfprodiff16x16.png",
        "19": "sfprodiff19x19.png",
        "48": "sfprodiff48x48.png",
        "128": "sfprodiff128x128.png"
    },
    "permissions": [
        "cookies",
        "https:\/\/*.salesforce.com\/",
        "https:\/\/*.force.com\/*",
        "https:\/\/*.salesforce.com\/*",
        "https:\/\/*.cloudforce.com\/*",
        "tabs",
        "declarativeContent",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.cloudforce.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "page_action": {
        "default_name": "Record and Metdata Comparator for Salesforce",
        "default_icon": "sfprodiff16x16.png",
        "default_popup": "popup.html"
    }
}