Hellooo for Chrome
The simplest way to record, transcribe, clip and share insights from your user interviews
Τι είναι το Hellooo for Chrome;
Το Hellooo for Chrome είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://hellooo.io, και η κύρια λειτουργία του είναι "The simplest way to record, transcribe, clip and share insights from your user interviews".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Hellooo for Chrome
Λήψη αρχείων επέκτασης Hellooo for Chrome σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" ] } |