Salesforce Data/Metadata Utility
Work With Salesforce Record Data and Metadata With Few Clicks
什么是Salesforce Data/Metadata Utility?
Salesforce Data/Metadata Utility是由maninders开发的Chrome扩展程序,该扩展的主要功能是“Work With Salesforce Record Data and Metadata With Few Clicks”。
扩展截图
下载Salesforce Data/Metadata Utility扩展crx文件
下载Salesforce Data/Metadata Utility扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Salesforce Data/Metadata Utility |
ID | jkmajpplbomebfegjjagbeoblheeehld |
官方URL | https://chromewebstore.google.com/detail/salesforce-datametadata-u/jkmajpplbomebfegjjagbeoblheeehld |
简介 | Work With Salesforce Record Data and Metadata With Few Clicks |
文件大小 | 50.11 KB |
安装次数 | 5,538 |
当前版本 | 0.0.10 |
更新时间 | 2023-02-22 |
上架时间 | 2020-03-09 |
评分 | 4.78/5 共9次评分 |
开发者 | maninders |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.sfdcproducthunt.com/ |
支持的语言 | 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" } } } |