Convin: Video record - Google Meet
Record, Transcribe Google Meet meetings, highlight key moments, tag teammates
Convin: Video record - Google Meet란 무엇입니까?
Convin: Video record - Google Meet은(는) convin.ai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Record, Transcribe Google Meet meetings, highlight key moments, tag teammates"입니다.
확장 프로그램 스크린샷
Convin: Video record - Google Meet 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
People keep on searching for truth through various channels ignoring something that has always been there in front of their eyes. The conversation with customers is the real intelligence that separates opinions from reality. It’s the voice of customers. Till now, most of the organisations don’t use it because they don’t realise the importance of the goldmine of data they are sitting on. We believe that customer conversations can be the thread to weave together different functions in your organisation. Imagine a time when most of the decisions are taken after taking references from real conversations with customers. Record, Transcribe Google Meet meetings * Record & transcribe your Google Meets in video & text * Instantly share fully contextualized meeting takeaways with your team * Empower your team to catch up on meetings in minutes Slack, Gmail, Hubspot, Salesforce, Pipedrive, and so many more LOVED BY: * Async-first teams * Product and Engineering * Customer Success & Sales * User Research * Recruiters & HR * Webinars / Onboarding / Training USED FOR: *Internal Meetings *Customer Calls and Demos *Hiring and Recruiting *Onboarding / Training *User Testing, Market Research & Customer Interviews for more info visit: https://convin.ai/ PRIVACY & SECURITY: *Storage & Encryption* We use industry-standard MariaDB, and Mongo DB hosted at Google, AWS and/or by the respective vendors. All connections to convin is encrypted using SSL. And any attempt to connect over HTTP is redirected to HTTPS https://convin.ai/privacy-policy
확장 프로그램 기본 정보
이름 | |
ID | ofbnlahcaoadmanmkmpjjclpjnmbonpa |
공식 URL | https://chromewebstore.google.com/detail/convin-video-record-googl/ofbnlahcaoadmanmkmpjjclpjnmbonpa |
설명 | Record, Transcribe Google Meet meetings, highlight key moments, tag teammates |
파일 크기 | 19.96 KB |
설치 횟수 | 105 |
현재 버전 | 0.0.12 |
최근 업데이트 | 2023-05-03 |
출시 날짜 | 2021-07-01 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | convin.ai |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://convin.ai |
개인정보 보호 정책 페이지 URL | https://convin.ai/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Convin: Video record - Google Meet", "description": "Record, Transcribe Google Meet meetings, highlight key moments, tag teammates", "version": "0.0.12", "browser_action": { "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon32.png", "128": "images\/icon128.png" }, "default_popup": "popup.html" }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon32.png", "128": "images\/icon128.png" }, "content_scripts": [ { "js": [ "scripts\/google_meet.js" ], "css": [ "css\/convin_meet.css" ], "matches": [ "*:\/\/meet.google.com\/*" ] }, { "matches": [ "http:\/\/*.convin.ai\/*", "https:\/\/*.convin.ai\/*" ], "js": [ "scripts\/all_frames.js" ], "all_frames": true } ], "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "options_ui": { "open_in_tab": false, "page": "popup.html" }, "permissions": [ "*:\/\/meet.google.com\/*", "*:\/\/*.convin.ai\/*", "storage" ] } |