Panaya ForeSight - Salesforce Discovery
Foresee dependencies and analyze the impact before making any change in your Salesforce Org
Panaya ForeSight - Salesforce Discovery란 무엇입니까?
Panaya ForeSight - Salesforce Discovery은(는) Panaya Inc.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Foresee dependencies and analyze the impact before making any change in your Salesforce Org"입니다.
확장 프로그램 스크린샷
Panaya ForeSight - Salesforce Discovery 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Get unparalleled Impact Analysis for your Salesforce org with just the click of a button. Panaya ForeSight's Discovery Chrome Extension allows you to easily discover the dependencies and level of complexity that exist within your Salesforce Org. Quickly analyze your Salesforce components, including impact analysis of: Fields, Process Builders, Flows, Validation Rules, Apex code, and more. Use the side panel to analyze your components from within the Object Manager, or simply highlight any text within your Salesforce Org and analyze with Discovery to reveal the dependencies related to the selected Salesforce component, and instantly foresee the potential risk of change. Now you can seamlessly and accurately deploy to production with zero risk of post go-live errors.
확장 프로그램 기본 정보
이름 | Panaya ForeSight - Salesforce Discovery |
ID | apckcodbipcafmgncelooejphomnijhn |
공식 URL | https://chromewebstore.google.com/detail/panaya-foresight-salesfor/apckcodbipcafmgncelooejphomnijhn |
설명 | Foresee dependencies and analyze the impact before making any change in your Salesforce Org |
파일 크기 | 257 KB |
설치 횟수 | 378 |
현재 버전 | 23.5.9 |
최근 업데이트 | 2023-05-09 |
출시 날짜 | 2021-08-28 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Panaya Inc. |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.panaya.com/product/salesforce-foresight/ |
개인정보 보호 정책 페이지 URL | http://www.panaya.com/panaya-privacy-2 |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "23.5.9", "name": "__MSG_name__", "short_name": "__MSG_short_name__", "description": "__MSG_description__", "homepage_url": "https:\/\/www.panaya.com", "default_locale": "en", "action": { "default_title": "Click to show an analysis" }, "permissions": [ "contextMenus", "storage", "cookies", "activeTab", "scripting", "offscreen" ], "host_permissions": [ "https:\/\/*.force.com\/*", "https:\/\/*.panaya.com\/*", "https:\/\/*.panaya.int\/*" ], "icons": { "16": ".\/icons\/icon16.png", "48": ".\/icons\/icon48.png", "128": ".\/icons\/icon128.png" }, "background": { "service_worker": ".\/background\/service_worker.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.force.com\/*" ], "css": [ ".\/styles\/discovery.css" ], "js": [ ".\/common\/common.js", ".\/common\/discovery-content.js", ".\/common\/port-messages.js", ".\/common\/side-bar.js", ".\/content\/objects-manager\/component-details.js", ".\/content\/objects-manager\/sub-components-list.js", ".\/content\/objects-manager\/objects-list.js", ".\/content\/objects-manager\/extension-action.js" ], "run_at": "document_end", "all_frames": true } ], "options_ui": { "page": ".\/options\/options.html", "open_in_tab": false }, "commands": { "toggle-discovery": { "suggested_key": { "default": "Ctrl+Shift+Q", "mac": "Command+Shift+D" }, "description": "Send selected text to Panaya ForeSight discovery page." } }, "web_accessible_resources": [ { "resources": [ "discovery-iframe-view.html" ], "matches": [ "*:\/\/*\/*" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |