Salesforce Data/Metadata Utility
Work With Salesforce Record Data and Metadata With Few Clicks
Что такое Salesforce Data/Metadata Utility?
Salesforce Data/Metadata Utility - это расширение Chrome, разработанное maninders, и его основная функция - "Work With Salesforce Record Data and Metadata With Few Clicks".
Снимки экрана расширения
Скачать файл CRX расширения Salesforce Data/Metadata Utility
Скачайте файлы расширений 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" } } } |