Salesforce Show Api Name
Display Field & Object API Names on Detail Pages (LEX & Classic).
Τι είναι το Salesforce Show Api Name;
Το Salesforce Show Api Name είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον zcchen.dev, και η κύρια λειτουργία του είναι "Display Field & Object API Names on Detail Pages (LEX & Classic).".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Salesforce Show Api Name
Λήψη αρχείων επέκτασης Salesforce Show Api Name σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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. Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| 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"
}
}
} | |