Thimble AI
Thimble AI Summarizes your sales calls and meetings
Thimble AI là gì?
Thimble AI là một tiện ích mở rộng Chrome được phát triển bởi Thimble AI, và tính năng chính của nó là "Thimble AI Summarizes your sales calls and meetings".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Thimble AI
Tải xuống các tệp mở rộng Thimble AI dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Thimble AI |
ID | mbeahljdfcifcpfdadkokgfdofcjhioh |
URL Chính Thức | https://chromewebstore.google.com/detail/thimble-ai/mbeahljdfcifcpfdadkokgfdofcjhioh |
Mô tả | Thimble AI Summarizes your sales calls and meetings |
Kích Thước Tệp | 30.63 KB |
Số Lần Cài Đặt | 67 |
Phiên Bản Hiện Tại | 0.0.0.7 |
Cập Nhật Lần Cuối | 2023-04-25 |
Ngày Phát Hành | 2023-03-05 |
Nhà Phát Triển | Thimble AI |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://thimbleai.com/ |
URL Trang Trợ Giúp | https://thimbleai.com/ |
URL Trang Chính Sách Bảo Mật | https://thimbleai.com |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |