Salesforce inspector
Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.
Salesforce inspector란 무엇입니까?
Salesforce inspector은(는) Søren Krabbe에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI."입니다.
확장 프로그램 스크린샷
Salesforce inspector 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Extension to add a metadata layout on top of the standard Salesforce UI to improve the productivity and joy of Salesforce configuration, development, and integration work. See more at https://github.com/sorenkrabbe/Chrome-Salesforce-inspector (also available for firefox)
확장 프로그램 기본 정보
이름 | Salesforce inspector |
ID | aodjmnfhjibkcdimpodiifdjnnncaafh |
공식 URL | https://chromewebstore.google.com/detail/salesforce-inspector/aodjmnfhjibkcdimpodiifdjnnncaafh |
설명 | Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI. |
파일 크기 | 422 KB |
설치 횟수 | 596,535 |
현재 버전 | 1.14 |
최근 업데이트 | 2022-12-22 |
출시 날짜 | 2020-05-14 |
평점 | 4.81/5 총 300 개의 평점 |
개발자 | Søren Krabbe |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/sorenkrabbe/Chrome-Salesforce-inspector |
도움말 페이지 URL | https://github.com/sorenkrabbe/Chrome-Salesforce-inspector |
개인정보 보호 정책 페이지 URL | https://github.com/sorenkrabbe/Chrome-Salesforce-inspector |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salesforce inspector", "description": "Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.", "version": "1.14", "icons": { "128": "icon128.png" }, "minimum_chrome_version": "61", "permissions": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.force.com\/*", "https:\/\/*.cloudforce.com\/*", "https:\/\/*.visualforce.com\/*", "cookies" ], "content_scripts": [ { "matches": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.visual.force.com\/*", "https:\/\/*.lightning.force.com\/*", "https:\/\/*.cloudforce.com\/*", "https:\/\/*.visualforce.com\/*" ], "all_frames": true, "css": [ "button.css", "inspect-inline.css" ], "js": [ "button.js", "inspect-inline.js" ] } ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "popup.html", "data-export.html", "data-import.html", "inspect.html", "metadata-retrieve.html", "explore-api.html", "limits.html" ], "incognito": "split", "manifest_version": 2 } |