Salesforce Hidden Field Editor
This extension is helpful for editing the fields which are not on page Layout
Salesforce Hidden Field Editor란 무엇입니까?
Salesforce Hidden Field Editor은(는) https://mvclouds.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension is helpful for editing the fields which are not on page Layout"입니다.
확장 프로그램 스크린샷
Salesforce Hidden Field Editor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
With the Salesforce Hidden Field Editor, easily find and edit the fields that you care about if it is not available in page layout. Once you have added the extension, you can directly use the tool to access fields without putting any effort to login to that org. Quick saving is an added functionality here. Features: - Search fields not available in page layouts - Editing fields - Quick Saving - Handy
확장 프로그램 기본 정보
이름 | Salesforce Hidden Field Editor |
ID | bcdcopflkfojiiigkcioiiflgmebepbb |
공식 URL | https://chromewebstore.google.com/detail/salesforce-hidden-field-e/bcdcopflkfojiiigkcioiiflgmebepbb |
설명 | This extension is helpful for editing the fields which are not on page Layout |
파일 크기 | 352 KB |
설치 횟수 | 196 |
현재 버전 | 1.0 |
최근 업데이트 | 2019-09-30 |
출시 날짜 | 2019-09-30 |
개발자 | https://mvclouds.com |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salesforce Hidden Field Editor", "version": "1.0", "manifest_version": 2, "description": "This extension is helpful for editing the fields which are not on page Layout", "icons": { "16": "images\/icon16.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "fieldEditor", "default_popup": "pages\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*" ], "js": [ "scripts\/jquery.js", "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "activeTab" ] } |