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 |
Eメール | [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" } } } |