Salesforce Show Api Name
Display Field & Object API Names on Detail Pages (LEX & Classic).
什麼是Salesforce Show Api Name?
Salesforce Show Api Name是由zcchen.dev開發的Chrome擴展程式,該擴展的主要功能是“Display Field & Object API Names on Detail Pages (LEX & Classic).”。
擴展截圖
下載Salesforce Show Api Name擴展crx文件
下載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.
擴展基本資訊
名稱 | Salesforce Show Api Name |
ID | dcfecmnffjopafbbbaepgopfcphnoham |
官方網址 | 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" } } } |