enable.us Extension
Communicate with prospects faster by inserting room links in emails with a simple click.
enable.us Extension란 무엇입니까?
enable.us Extension은(는) enable.us에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Communicate with prospects faster by inserting room links in emails with a simple click."입니다.
확장 프로그램 스크린샷
enable.us Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Designed with buyers in mind, Enable Us by Mindtickle redefines digital B2B buying experiences for sellers, buyers and customers. We offer a Digital Sales Room solution that empowers sellers to build digital buying experiences that engage buyers and get deals done faster. Sellers curate relevant content, mutual action plans, and signable documents tailored to the prospect’s needs. Easily find, insert and share links to any of your Digital Sales Rooms with your prospects. * Use one link to share content, mutual action plans, and signable documents * Track all sales room activities and alert sales in real time * Gain insights into content engagement and effectiveness to determine what content engages buyers
확장 프로그램 기본 정보
이름 | enable.us Extension |
ID | finkgjecdnkekigdhckihgomnfkbgbep |
공식 URL | https://chromewebstore.google.com/detail/enableus-extension/finkgjecdnkekigdhckihgomnfkbgbep |
설명 | Communicate with prospects faster by inserting room links in emails with a simple click. |
파일 크기 | 928 KB |
설치 횟수 | 68 |
현재 버전 | 1.3.0 |
최근 업데이트 | 2023-09-20 |
출시 날짜 | 2022-02-28 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | enable.us |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.enableus.com |
도움말 페이지 URL | https://help.enable.us/en/ |
개인정보 보호 정책 페이지 URL | https://www.enable.us/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "enable.us Extension", "description": "Communicate with prospects faster by inserting room links in emails with a simple click.", "version": "1.3.0", "action": { "default_popup": "index.html", "default_title": "Insert enable.us room links", "deafult_icon": { "16": "\/images\/enable-icon-16.png", "32": "\/images\/enable-icon-32.png", "48": "\/images\/enable-icon-48.png", "128": "\/images\/enable-icon-128.png" } }, "icons": { "16": "\/images\/enable-icon-16.png", "32": "\/images\/enable-icon-32.png", "48": "\/images\/enable-icon-48.png", "128": "\/images\/enable-icon-128.png" }, "permissions": [ "storage", "tabs" ], "background": { "service_worker": ".\/static\/js\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ ".\/static\/js\/gmail.js" ], "run_at": "document_end" } ], "externally_connectable": { "ids": [ "*" ], "matches": [ "https:\/\/web.enable.us\/*" ] }, "web_accessible_resources": [ { "resources": [ "images\/*.png", "index.html" ], "matches": [ "https:\/\/mail.google.com\/*" ], "extension_ids": [] } ] } |