Thimble AI
Thimble AI Summarizes your sales calls and meetings
Thimble AI란 무엇입니까?
Thimble AI은(는) Thimble AI에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Thimble AI Summarizes your sales calls and meetings"입니다.
확장 프로그램 스크린샷
Thimble AI 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Introducing Thimble AI - The sales call analysis extension that simplifies your workflow Do you spend hours sifting through sales call transcripts to write follow ups or get context? Thimble AI has got you covered! With Thimble AI, you can analyze transcripts in seconds and get an insightful summary of the call, the current state, and next steps. Thimble AI saves you time by automatically identifying the most critical information in each call and presents it in a concise and actionable format. You can also ask your own questions and receive endless results! Thimble AI is your go-to extension for efficient sales call analysis. Install it today and make your workflow faster and more manageable. If you have any feedback, don't hesitate to reach out to [email protected]. Updates 4/21: * Background generation - Close the pop up if you'd like * Customized key points - Choose which points are pulled out of the call * Call types - Add new call types customized to your industry
확장 프로그램 기본 정보
이름 | Thimble AI |
ID | mbeahljdfcifcpfdadkokgfdofcjhioh |
공식 URL | https://chromewebstore.google.com/detail/thimble-ai/mbeahljdfcifcpfdadkokgfdofcjhioh |
설명 | Thimble AI Summarizes your sales calls and meetings |
파일 크기 | 30.63 KB |
설치 횟수 | 67 |
현재 버전 | 0.0.0.7 |
최근 업데이트 | 2023-04-25 |
출시 날짜 | 2023-03-05 |
개발자 | Thimble AI |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://thimbleai.com/ |
도움말 페이지 URL | https://thimbleai.com/ |
개인정보 보호 정책 페이지 URL | https://thimbleai.com |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Thimble AI", "version": "0.0.0.7", "description": "Thimble AI Summarizes your sales calls and meetings", "manifest_version": 3, "author": "Greg K @ Thimble AI", "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*.gong.io\/*" ], "js": [ "scripts\/contentScript.js" ] } ], "background": { "service_worker": "scripts\/background.js", "type": "module" }, "host_permissions": [ "https:\/\/*.gong.io\/*" ], "action": { "default_popup": "popup\/popup.html", "default_title": "Thimble AI", "default_icon": "images\/Thimble16.png" }, "icons": { "16": "images\/Thimble16.png", "32": "images\/Thimble32.png", "48": "images\/Thimble48.png", "128": "images\/Thimble128.png" } } |