Sonar Web Extension
Sonar's Salesforce and Pardot explorer extension: Great for navigating your Salesforce and Pardot metadata with Sonar constantly by…
Sonar Web Extension란 무엇입니까?
Sonar Web Extension은(는) https://sonarsoftware.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sonar's Salesforce and Pardot explorer extension: Great for navigating your Salesforce and Pardot metadata with Sonar constantly by…"입니다.
확장 프로그램 스크린샷
Sonar Web Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Sonar's Salesforce and Pardot explorer extension: Great for navigating your Salesforce and Pardot metadata with Sonar constantly by your side. Sonar imports, parses, and visualizes the downstream impacts of changes to the configuration of your Salesforce and Pardot instances. The Sonar chrome extension enables Sales Operations and Marketing Operations professionals to work together in one application. Never make a breaking change again!
확장 프로그램 기본 정보
이름 | |
ID | fokbnkfoelnflbnjgfgmbmedhijloick |
공식 URL | https://chromewebstore.google.com/detail/sonar-web-extension/fokbnkfoelnflbnjgfgmbmedhijloick |
설명 | Sonar's Salesforce and Pardot explorer extension: Great for navigating your Salesforce and Pardot metadata with Sonar constantly by… |
파일 크기 | 6.47 MB |
설치 횟수 | 664 |
현재 버전 | 1.1.8 |
최근 업데이트 | 2022-11-03 |
출시 날짜 | 2021-01-28 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://sonarsoftware.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.sonarsoftware.com |
도움말 페이지 URL | https://sonarsoftware.zendesk.com/hc/en-us/ |
개인정보 보호 정책 페이지 URL | https://www.sonarsoftware.com/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "$schema": "http:\/\/json.schemastore.org\/chrome-manifest", "manifest_version": 2, "name": "Sonar Web Extension", "author": "Sonar Software", "version": "1.1.8", "description": "", "icons": { "16": "png\/16.png", "48": "png\/48.png", "128": "png\/128.png" }, "browser_action": { "default_icon": "png\/logo512.png", "default_popup": "popup.html", "default_title": "Sonar Web Extension" }, "background": { "persistent": true, "page": "background.html" }, "content_scripts": [ { "all_frames": true, "exclude_globs": [ "*:\/\/preview.pardot.com\/*" ], "match_about_blank": true, "matches": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.lightning.force.com\/*", "http:\/\/localhost:3000\/*", "http:\/\/*.localhost:3000\/*", "https:\/\/*.seesonar.com\/*", "https:\/\/*.staging-seesonar.com\/*", "https:\/\/*.pardot.com\/*" ], "run_at": "document_idle", "css": [ "content.css" ], "js": [ "content.js" ] } ], "content_security_policy": "script-src-elem 'self'", "externally_connectable": { "matches": [ "https:\/\/*.salesforce.com\/*" ] }, "web_accessible_resources": [ "png\/logo.png", "popup.html", "png\/48.png", "pardot-sync.html" ], "permissions": [ "http:\/\/*.localhost:3000", "http:\/\/localhost:3000", "https:\/\/*.seesonar.com\/*", "https:\/\/*.pardot.com\/*", "tabs", "storage", "webRequest", "webRequestBlocking" ] } |