Salesforce Show Api Name
Display Field & Object API Names on Detail Pages (LEX & Classic).
Salesforce Show Api Name क्या है?
Salesforce Show Api Name zcchen.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display Field & Object API Names on Detail Pages (LEX & Classic)."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Salesforce Show Api Name एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This repo is a chrome extension to show field and object api name on record detail page. How to use it: In salesforce classic/lightning record detail page, click extension icon, you will see the field/object api name added to the page. In addition to clicking the icon, shortcut is supported: MacOs: control + command + Z Windows: alt + shift + Z Linux: alt + shift + Z ChromeOs: alt + shift + Z Extension repository: https://github.com/ChenZaichuang/salesforce_show_api_name I appreciate to receive any feedbacks or pull requests, you can leave your comments in the repo or in the extension homepage or mail to [email protected] for any suggestions.
एक्सटेंशन की मूल जानकारी
नाम | Salesforce Show Api Name |
ID | dcfecmnffjopafbbbaepgopfcphnoham |
आधिकारिक URL | https://chromewebstore.google.com/detail/salesforce-show-api-name/dcfecmnffjopafbbbaepgopfcphnoham |
विवरण | Display Field & Object API Names on Detail Pages (LEX & Classic). |
फ़ाइल का आकार | 13.77 KB |
स्थापना संख्या | 47,429 |
वर्तमान संस्करण | 1.2.1 |
अंतिम अपडेट | 2021-03-28 |
प्रकाशन तिथि | 2019-12-25 |
रेटिंग | 4.74/5 कुल 23 रेटिंग्स |
डेवलपर | zcchen.dev |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/ChenZaichuang/salesforce_show_api_name |
सहायता पृष्ठ URL | https://github.com/ChenZaichuang/salesforce_show_api_name |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salesforce Show Api Name", "version": "1.2.1", "manifest_version": 2, "description": "Display Field & Object API Names on Detail Pages (LEX & Classic).", "homepage_url": "https:\/\/github.com\/ChenZaichuang\/salesforce_show_api_name", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "browser_action": { "default_icon": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "default_title": "Show Salesforce Api Name" }, "content_scripts": [ { "matches": [ "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*" ], "js": [ "content_script.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "activeTab", "cookies", "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*" ], "commands": { "showApiName": { "suggested_key": { "windows": "Alt+Shift+Z", "mac": "MacCtrl+Ctrl+Z", "linux": "Alt+Shift+Z", "chromeos": "Alt+Shift+Z" }, "description": "Show Api Name" } } } |