Hellooo for Chrome
The simplest way to record, transcribe, clip and share insights from your user interviews
Hellooo for Chrome là gì?
Hellooo for Chrome là một tiện ích mở rộng Chrome được phát triển bởi https://hellooo.io, và tính năng chính của nó là "The simplest way to record, transcribe, clip and share insights from your user interviews".
Ả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 Hellooo for Chrome
Tải xuống các tệp mở rộng Hellooo for Chrome 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
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Hellooo for Chrome |
ID | lgfmgkbkelacmhhcdckcakllefmakkcn |
URL Chính Thức | https://chromewebstore.google.com/detail/hellooo-for-chrome/lgfmgkbkelacmhhcdckcakllefmakkcn |
Mô tả | The simplest way to record, transcribe, clip and share insights from your user interviews |
Kích Thước Tệp | 251 KB |
Số Lần Cài Đặt | 205 |
Phiên Bản Hiện Tại | 0.10.2 |
Cập Nhật Lần Cuối | 2023-09-29 |
Ngày Phát Hành | 2022-08-02 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://hellooo.io |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://app.hellooo.io/login |
URL Trang Chính Sách Bảo Mật | https://www.hellooo.io/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |