Hellooo for Chrome

The simplest way to record, transcribe, clip and share insights from your user interviews

Qu'est-ce que Hellooo for Chrome ?

Hellooo for Chrome est une extension Chrome développée par https://hellooo.io, et sa fonction principale est "The simplest way to record, transcribe, clip and share insights from your user interviews".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Hellooo for Chrome

Téléchargez les fichiers d'extension Hellooo for Chrome au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Hellooo for Chrome Hellooo for Chrome
ID lgfmgkbkelacmhhcdckcakllefmakkcn
URL Officiel https://chromewebstore.google.com/detail/hellooo-for-chrome/lgfmgkbkelacmhhcdckcakllefmakkcn
Description The simplest way to record, transcribe, clip and share insights from your user interviews
Taille du Fichier 251 KB
Nombre d'Installations 205
Version Actuelle 0.10.2
Dernière Mise à Jour 2023-09-29
Date de Publication 2022-08-02
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://hellooo.io
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://app.hellooo.io/login
URL de la Page de Politique de Confidentialité https://www.hellooo.io/privacy-policy
Langues Prises en Charge 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"
    ]
}