Salesforce Data/Metadata Utility
Work With Salesforce Record Data and Metadata With Few Clicks
Apa itu Salesforce Data/Metadata Utility?
Salesforce Data/Metadata Utility adalah ekstensi Chrome yang dikembangkan oleh maninders, dan fitur utamanya adalah "Work With Salesforce Record Data and Metadata With Few Clicks".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Salesforce Data/Metadata Utility
Unduh file ekstensi Salesforce Data/Metadata Utility dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Salesforce Data/Metadata Utility |
ID | jkmajpplbomebfegjjagbeoblheeehld |
URL Resmi | https://chromewebstore.google.com/detail/salesforce-datametadata-u/jkmajpplbomebfegjjagbeoblheeehld |
Deskripsi | Work With Salesforce Record Data and Metadata With Few Clicks |
Ukuran File | 50.11 KB |
Jumlah Instalasi | 5,538 |
Versi Saat Ini | 0.0.10 |
Terakhir Diperbarui | 2023-02-22 |
Tanggal Publikasi | 2020-03-09 |
Penilaian | 4.78/5 Total 9 Penilaian |
Pengembang | maninders |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.sfdcproducthunt.com/ |
Bahasa yang Didukung | 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" } } } |