Read Smart Scheduler: Calendar + Time Manager
Automate finding the best time for your meetings in Google Calendar.
Read Smart Scheduler: Calendar + Time Manager란 무엇입니까?
Read Smart Scheduler: Calendar + Time Manager은(는) https://read.ai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automate finding the best time for your meetings in Google Calendar."입니다.
확장 프로그램 스크린샷
Read Smart Scheduler: Calendar + Time Manager 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Stop scheduling bad meetings, make them better with Read Smart Scheduler. Make your calendar smarter and stop wasting time guessing the best time to schedule a meeting. Read automates finding the right time to meet based on actual meeting metrics for all participants all within Google Calendar. Read Smart Scheduler for Chrome (free) enhances Google Calendar with a seamless integration. Read is the smartest way to schedule meetings directly in Google Calendar. 🙋♀️Read learns your and your team's best times by joining your video conference calls (Google Meeting, Zoom, Teams, Webex) as a participant and applying analytics and AI to optimize your schedule. 🤖 Automate finding the best time for all meeting participants, moving meetings when you are double booked, and ensuring you have focus time built into your day. 🏦 Save up to 23 meeting hours a month with integrated recommendations. 📈 See a double-digit improvement in participant engagement and on-time rates resulting in better calls for everyone. 🔧 Add a meeting timer, talk time metrics, engagement scores, and sentiment scores to your next meeting, all in real-time. Raw audio and video is deleted post-call. 📚 After the call, access post-meeting reports that includes highlights, topics, notes, transcription with reactions, and key metrics from your meeting. 📅 Your post-meeting reports and recommendations are built right into Google Calendar. ⚙️ Read Smart Scheduler is integrated directly into your Google Calendar experience. --------- By using the Read browser extension, you agree to Read's terms and conditions and privacy policy. https://www.read.ai/tos https://www.read.ai/pp
확장 프로그램 기본 정보
이름 | Read Smart Scheduler: Calendar + Time Manager |
ID | aiamjjeggglngiggkmmbnpnpeejjejaf |
공식 URL | https://chromewebstore.google.com/detail/read-smart-scheduler-cale/aiamjjeggglngiggkmmbnpnpeejjejaf |
설명 | Automate finding the best time for your meetings in Google Calendar. |
파일 크기 | 1.24 MB |
설치 횟수 | 31,708 |
현재 버전 | 0.5.4 |
최근 업데이트 | 2024-01-11 |
출시 날짜 | 2022-11-21 |
평점 | 4.54/5 총 13 개의 평점 |
개발자 | https://read.ai |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.read.ai |
도움말 페이지 URL | https://support.read.ai/hc/en-us/requests/new |
개인정보 보호 정책 페이지 URL | https://www.read.ai/privacy-policy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Read Smart Scheduler: Calendar + Time Manager", "description": "Automate finding the best time for your meetings in Google Calendar.", "version": "0.5.4", "manifest_version": 3, "action": { "default_popup": "popup.html", "default_title": "Read Smart Scheduler" }, "icons": { "16": "logos\/logomark_16.png", "48": "logos\/logomark_48.png", "128": "logos\/logomark_128.png" }, "host_permissions": [ "*:\/\/*.read.ai\/" ], "permissions": [ "cookies", "storage" ], "web_accessible_resources": [ { "resources": [ "assets\/*", "fonts\/*", "index.css" ], "matches": [ "https:\/\/*.calendar.google.com\/*", "https:\/\/*.meet.google.com\/*", "https:\/\/*.read.ai\/*" ] } ], "background": { "service_worker": "assets\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/*.calendar.google.com\/*", "https:\/\/*.meet.google.com\/*" ], "css": [ "index.css" ], "js": [ "assets\/content.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/*.read.ai\/*" ], "css": [ "index.css" ], "js": [ "assets\/rollcall.js" ], "run_at": "document_end" } ] } |