Salesforce Change Set Helper

Enhances the Salesforce change set. Adds last changed date and allows sorting, searching, validation and comparison with other orgs.

什麼是Salesforce Change Set Helper?

Salesforce Change Set Helper是由Susan Bohme開發的Chrome擴展程式,該擴展的主要功能是“Enhances the Salesforce change set. Adds last changed date and allows sorting, searching, validation and comparison with other orgs.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Salesforce Change Set Helper擴展crx文件

下載Salesforce Change Set Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        A chrome extension to improve the usability of Salesforce change sets

NEW!  Release 3.0!
Now Lightning Compatible!

Features include: 
 - Includes the last modified date and user and api name for each item.
 - Automatically ordered by most recent modified first
 - Filter/Search/Order by any field.
 - Sets all pages to show the 1000 rows.  If more than 1000 items in a page, asks if you want to continue to retrieve more. 
 - View and Search on items in the change set.  This allows you to see the whole change set and search to make removing much easier.
 - Compare to another org (uses OAuth2.0 -- no username or password information is seen or stored by this extension).
 - Shows the last modified date and user for the compared org as well.
 - Click the file name to see a diff of the metadata file between orgs.

Note that there is a delay when loading large pages and you may need to disable other chrome extensions that alter the change set page.

Please feel free to report bugs, or issues or request new features!

Release 3.0.0.
Lightning compatible!
Fixed issue with Validation.
Added Quick Deploy.
Updated compare files content to compare all files (for example, in a Aura Component).
Fixed issue with constantly spinning wheel if there is an error.
Added ability to change API Version.
Removed extension from all pages except change sets.

Release 2.2.0
Now includes Validation helper.  Log into another org and validate the change set. 

Release 2.1.2
Fixed bug with Quick Links on VF page even when disabled 
Fixed bug with Sharing Criteria Rules

Release 2.1.1
Fixed bugs with hanging when no content.
Merged with "beta" extension -- new features such as download zip file of the change set.

Release 2.02 
Now can compare files between orgs.  Log in to a sandbox or dev/prod org.  Uses Oauth2.0 for authorization -- no user or password information is seen or stored locally.  Shows the last modified date and user for the compared org.  Click the name and see a diff comparison of the two.

Release 1.4
Updated to add ability to keep getting 1000 more items on pages.  (Salesforce will only retrieve 1000 a time.)  Added in a "clear" function to clear the search filters. Clear is automatically called before items are added to change set -- this is because of a bug where the items will not be added unless they are visible.

Release 1.3
Updated to support workflows, reports, email templates and many more.                    

擴展基本資訊

名稱 Salesforce Change Set Helper Salesforce Change Set Helper
ID gdjfanbphogooppaefebaaoohdcigpoi
官方網址 https://chromewebstore.google.com/detail/salesforce-change-set-hel/gdjfanbphogooppaefebaaoohdcigpoi
簡介 Enhances the Salesforce change set. Adds last changed date and allows sorting, searching, validation and comparison with other orgs.
檔案大小 1.51 MB
安裝次數 28,771
目前版本 3.0.0
更新時間 2020-06-22
上架時間 2020-06-22
評分 4.35/5 共 55 次評分
開發者 Susan Bohme
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce Change Set Helper",
    "description": "Enhances the Salesforce change set. Adds last changed date and allows sorting, searching, validation and comparison with other orgs.",
    "version": "3.0.0",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "braincloudsmall.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "brainbulb128.png",
        "48": "brainbulb48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/p\/mfpkg\/AddToPackageFromChangeMgmtUi*",
                "https:\/\/*\/p\/mfpkg\/AddToPackageUi*"
            ],
            "css": [
                "lib\/jquery.dataTables.css",
                "lib\/mergely.css",
                "lib\/codemirror.css",
                "lib\/jquery-ui.min.css",
                "lib\/jquery-ui.structure.min.css",
                "lib\/jquery-ui.theme.min.css",
                "lib\/dataTables.checkboxes.css",
                "changeset.css"
            ],
            "js": [
                "lib\/jquery.min.js",
                "lib\/jquery.dataTables.js",
                "lib\/jquery-ui.min.js",
                "lib\/dataTables.checkboxes.min.js",
                "lib\/codemirror.js",
                "lib\/moment.js",
                "lib\/searchcursor.js",
                "lib\/jsforce.js",
                "lib\/buttons.html5.min.js",
                "lib\/jquery.json-viewer.js",
                "lib\/select2.min.js",
                "lib\/mergely.js",
                "lib\/jszip.js",
                "common.js",
                "changeset.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/*\/*tab=PackageComponents*"
            ],
            "css": [
                "lib\/jquery.dataTables.css",
                "changeset.css"
            ],
            "js": [
                "lib\/jquery.min.js",
                "lib\/jquery.dataTables.js",
                "lib\/moment.js",
                "changeview.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/changemgmt\/outboundChangeSetDetailPage.apexp*"
            ],
            "css": [
                "lib\/jquery.dataTables.css",
                "lib\/jquery.json-viewer.css",
                "lib\/select2.min.css",
                "lib\/codemirror.css",
                "lib\/dataTables.checkboxes.css",
                "changeset.css"
            ],
            "js": [
                "lib\/jquery.min.js",
                "lib\/jquery.dataTables.js",
                "lib\/jquery-ui.min.js",
                "lib\/codemirror.js",
                "lib\/dataTables.checkboxes.min.js",
                "lib\/moment.js",
                "lib\/buttons.html5.min.js",
                "lib\/jquery.json-viewer.js",
                "lib\/select2.min.js",
                "lib\/FileSaver.js",
                "lib\/jszip.js",
                "common.js",
                "metadatahelper.js",
                "deployhelper.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "https:\/\/*.com\/p\/mfpkg\/AddToPackageFromChangeMgmtUi*",
        "https:\/\/*.com\/p\/mfpkg\/AddToPackageUi*",
        "https:\/\/*.com\/*tab=PackageComponents*",
        "https:\/\/*.com\/changemgmt\/outboundChangeSetDetailPage.apexp*",
        "https:\/\/*.salesforce.com\/services\/*",
        "identity",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js",
            "lib\/jsforce.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "loading.gif"
    ]
}