Salesforce Show Api Name

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

Apa itu Salesforce Show Api Name?

Salesforce Show Api Name adalah ekstensi Chrome yang dikembangkan oleh zcchen.dev, dan fitur utamanya adalah "Display Field & Object API Names on Detail Pages (LEX & Classic).".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Salesforce Show Api Name

Unduh file ekstensi Salesforce Show Api Name 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 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.                    

Informasi Dasar Ekstensi

Nama Salesforce Show Api Name Salesforce Show Api Name
ID dcfecmnffjopafbbbaepgopfcphnoham
URL Resmi https://chromewebstore.google.com/detail/salesforce-show-api-name/dcfecmnffjopafbbbaepgopfcphnoham
Deskripsi Display Field & Object API Names on Detail Pages (LEX & Classic).
Ukuran File 13.77 KB
Jumlah Instalasi 47,429
Versi Saat Ini 1.2.1
Terakhir Diperbarui 2021-03-28
Tanggal Publikasi 2019-12-25
Penilaian 4.74/5 Total 23 Penilaian
Pengembang zcchen.dev
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/ChenZaichuang/salesforce_show_api_name
URL Halaman Bantuan https://github.com/ChenZaichuang/salesforce_show_api_name
Bahasa yang Didukung 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"
        }
    }
}