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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } } |