Salesforce Data/Metadata Utility
Work With Salesforce Record Data and Metadata With Few Clicks
What is Salesforce Data/Metadata Utility?
Salesforce Data/Metadata Utility is a Chrome extension developed by maninders, and its main feature is "Work With Salesforce Record Data and Metadata With Few Clicks".
Extension Screenshots
Download Salesforce Data/Metadata Utility Extension CRX File
Download Salesforce Data/Metadata Utility extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension helps to work with Record Data and Metadata with few clicks to make you more productive. This is completely free so please rate and share feedback in REVIEW tab here as a token of appreciation. Support: Buy me a coffee: https://www.buymeacoffee.com/maninders Demo 1: https://www.youtube.com/watch?v=5PRv5wOpJ_I Demo 2: https://www.youtube.com/watch?v=NUeN5kw6DrQ Demo 3: https://www.youtube.com/watch?v=Y_Q2jEDeiWg Demo 4: https://www.youtube.com/watch?v=eCDstE79AAo How to Use: User can right click on any salesforce page (which has Salesforce record id in the URL) or any link on that page (which has Salesforce record id in the URL) and use the context menu options detailed below. After clicking on any option the user sees a notification appear for 2 seconds which is useful to know the result of the action. If there is no notification that means the context menu does not work on that page/link. It has following context menu options: 1. Copy Record Id (15) : Watch Demo 1.Copy 15 digit Salesforce Record Ids from records and links to your clipboard.Keyboard shortcut : ALT + SHIFT + 5 2. Copy Record Id (18): Watch Demo 1.Copy 18 digit Salesforce Record Ids from records and links to your clipboard.Keyboard shortcut : ALT + SHIFT + 8 Option 1 and 2 can be used to Convert 15 digit Salesforce Id to 18 digit and viceversa. 3. Copy Classic URL: Watch Demo 1.Copy the Classic URL of the Record and links to the clipboard.Keyboard shortcut : ALT + SHIFT + C 4. Navigate to Copied Id: Watch Demo 1.Navigate to any record in Salesforce whose Record Id is copied (from any application) in clipboard.Keyboard shortcut : ALT + SHIFT + N 5. Open in LEX: Watch Demo 4.Open any Salesforce Record from Classic directly in Lightning (LEX) in a new tab to compare Classic and Lightning record view side by side. This option appears only when the user is in Classic page. 6. Export Picklist Values: Watch Demo 2.Exports all the picklist fields and its values (along with label,active and default attributes) of the record object to a csv file which downloads automatically with name
Extension Basic Information
Name | Salesforce Data/Metadata Utility |
ID | jkmajpplbomebfegjjagbeoblheeehld |
Official URL | https://chromewebstore.google.com/detail/salesforce-datametadata-u/jkmajpplbomebfegjjagbeoblheeehld |
Description | Work With Salesforce Record Data and Metadata With Few Clicks |
File Size | 50.11 KB |
Installation Count | 5,538 |
Current Version | 0.0.10 |
Last Updated | 2023-02-22 |
Publish Date | 2020-03-09 |
Rating | 4.78/5 Total 9 Ratings |
Developer | maninders |
[email protected] | |
Payment Type | free |
Extension Website | https://www.sfdcproducthunt.com/ |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Salesforce Data\/Metadata Utility", "version": "0.0.10", "description": "Work With Salesforce Record Data and Metadata With Few Clicks", "author": { "name": "Maninder Singh", "url": "https:\/\/www.buymeacoffee.com\/maninders\/" }, "homepage_url": "https:\/\/letmeautomate.wordpress.com\/", "background": { "scripts": [ "js\/jquery.min.js", "js\/background.js", "js\/shared.js", "js\/utils.js", "js\/constants.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.salesforce.com\/*" ], "js": [ "js\/jquery.min.js", "js\/contentscript.js" ], "run_at": "document_end" }, { "all_frames": true, "css": [ "js\/style.css" ], "matches": [ "*:\/\/*.salesforce.com\/*00O*", "*:\/\/*.force.com\/*00O*" ], "exclude_globs": [ "*\/o\/Report\/home*", "*salesforce.com\/00O\/o*" ] } ], "page_action": { "default_icon": "img\/easyaccess_128x128.png", "default_title": "Salesforce Data\/Metadata Utility" }, "permissions": [ "tabs", "contextMenus", "clipboardWrite", "activeTab", "clipboardRead", "cookies", "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*", "https:\/\/*.cloudforce.com\/*" ], "icons": { "128": "img\/easyaccess_128x128.png" }, "commands": { "CallCopy15": { "description": "Copy the 15 Digit record ID", "suggested_key": { "default": "Alt+Shift+5" } }, "CallCopy18": { "description": "Copy the 18 Digit record ID", "suggested_key": { "default": "Alt+Shift+8" } }, "CallCopyClassicURL": { "description": "Copy Classic URL", "suggested_key": { "default": "Alt+Shift+C" } }, "CallNavigateToRecordId": { "description": "Navigate To record ID in new Tab", "suggested_key": { "default": "Alt+Shift+N" } }, "CallOpenInLEX": { "description": "Open in LEX" } } } |