Hellooo for Chrome
The simplest way to record, transcribe, clip and share insights from your user interviews
Hellooo for Chrome란 무엇입니까?
Hellooo for Chrome은(는) https://hellooo.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The simplest way to record, transcribe, clip and share insights from your user interviews"입니다.
확장 프로그램 스크린샷
Hellooo for Chrome 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
In matters of click, use Hellooo for Chrome to: 🎥 Record and transcribe your user interview in Google Meet 🏴 Flag key moments during the interview ✂️ Clip and share insights in seconds in Slack or Notion 🪄 Get AI summarised facts with sentimental analysis ❤️ Loved by: - UX Researchers - Product Designers - Product Managers 👷♀️Used for: - Product Discovery - User Research GET STARTED 1. Install the Chrome extension 2. Sign in with your professional email 3. Activate your account 4. Rock your user interviews!
확장 프로그램 기본 정보
이름 | Hellooo for Chrome |
ID | lgfmgkbkelacmhhcdckcakllefmakkcn |
공식 URL | https://chromewebstore.google.com/detail/hellooo-for-chrome/lgfmgkbkelacmhhcdckcakllefmakkcn |
설명 | The simplest way to record, transcribe, clip and share insights from your user interviews |
파일 크기 | 251 KB |
설치 횟수 | 205 |
현재 버전 | 0.10.2 |
최근 업데이트 | 2023-09-29 |
출시 날짜 | 2022-08-02 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://hellooo.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://app.hellooo.io/login |
개인정보 보호 정책 페이지 URL | https://www.hellooo.io/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Hellooo for Chrome", "description": "The simplest way to record, transcribe, clip and share insights from your user interviews", "version": "0.10.2", "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/16x16.png", "32": "images\/32x32.png", "48": "images\/48x48.png", "128": "images\/128x128.png" } }, "host_permissions": [ "https:\/\/calendar.google.com\/*", "https:\/\/meet.google.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/calendar.google.com\/*" ], "js": [ "calendar.js" ], "css": [ "files\/extension.css" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "*:\/\/calendar.google.com\/*" ], "js": [ "sidebar.js" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "*:\/\/meet.google.com\/*" ], "js": [ "meet.js" ], "css": [ "files\/extension.css" ], "run_at": "document_end", "all_frames": true } ], "icons": { "16": "images\/16x16.png", "32": "images\/32x32.png", "48": "images\/48x48.png", "128": "images\/128x128.png" }, "web_accessible_resources": [ { "resources": [ "assets\/*" ], "matches": [ "*:\/\/calendar.google.com\/*", "*:\/\/meet.google.com\/*" ] } ], "permissions": [ "activeTab", "scripting" ] } |