Salesforce Change Set Helper

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

Hvad er Salesforce Change Set Helper?

Salesforce Change Set Helper er en Chrome-udvidelse udviklet af Susan Bohme, og dens hovedfunktion er "Enhances the Salesforce change set. Adds last changed date and allows sorting, searching, validation and comparison with other orgs.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download Salesforce Change Set Helper-udvidelses-CRX-fil

Download Salesforce Change Set Helper-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Salesforce Change Set Helper Salesforce Change Set Helper
ID gdjfanbphogooppaefebaaoohdcigpoi
Officiel URL https://chromewebstore.google.com/detail/salesforce-change-set-hel/gdjfanbphogooppaefebaaoohdcigpoi
Beskrivelse Enhances the Salesforce change set. Adds last changed date and allows sorting, searching, validation and comparison with other orgs.
Filstørrelse 1.51 MB
Antal Installationer 28,771
Nuværende Version 3.0.0
Senest Opdateret 2020-06-22
Udgivelsesdato 2020-06-22
Bedømmelse 4.35/5 Samlet 55 Bedømmelser
Udvikler Susan Bohme
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}