Salesforce Show Api Name

Display Field & Object API Names on Detail Pages (LEX & Classic).

Qu'est-ce que Salesforce Show Api Name ?

Salesforce Show Api Name est une extension Chrome développée par zcchen.dev, et sa fonction principale est "Display Field & Object API Names on Detail Pages (LEX & Classic).".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Salesforce Show Api Name

Téléchargez les fichiers d'extension Salesforce Show Api Name au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Salesforce Show Api Name Salesforce Show Api Name
ID dcfecmnffjopafbbbaepgopfcphnoham
URL Officiel https://chromewebstore.google.com/detail/salesforce-show-api-name/dcfecmnffjopafbbbaepgopfcphnoham
Description Display Field & Object API Names on Detail Pages (LEX & Classic).
Taille du Fichier 13.77 KB
Nombre d'Installations 47,429
Version Actuelle 1.2.1
Dernière Mise à Jour 2021-03-28
Date de Publication 2019-12-25
Évaluation 4.74/5 Total 23 Évaluations
Développeur zcchen.dev
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/ChenZaichuang/salesforce_show_api_name
URL de la Page d'Aide https://github.com/ChenZaichuang/salesforce_show_api_name
Langues Prises en Charge 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"
        }
    }
}