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.」です。
拡張機能のスクリーンショット
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 |
ID | gdjfanbphogooppaefebaaoohdcigpoi |
公式URL | 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 |
Eメール | [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" ] } |