Hellooo for Chrome

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

O que é Hellooo for Chrome?

Hellooo for Chrome é uma extensão do Chrome desenvolvida por https://hellooo.io, e sua principal característica é "The simplest way to record, transcribe, clip and share insights from your user interviews".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Hellooo for Chrome

Baixe arquivos de extensão Hellooo for Chrome no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Hellooo for Chrome Hellooo for Chrome
ID lgfmgkbkelacmhhcdckcakllefmakkcn
URL Oficial https://chromewebstore.google.com/detail/hellooo-for-chrome/lgfmgkbkelacmhhcdckcakllefmakkcn
Descrição The simplest way to record, transcribe, clip and share insights from your user interviews
Tamanho do Arquivo 251 KB
Contagem de Instalações 205
Versão Atual 0.10.2
Última Atualização 2023-09-29
Data de Publicação 2022-08-02
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://hellooo.io
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://app.hellooo.io/login
URL da Página de Política de Privacidade https://www.hellooo.io/privacy-policy
Idiomas Suportados 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"
    ]
}