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”。

擴展截圖

screenshot

下載Hellooo for Chrome擴展crx文件

下載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 Hellooo for Chrome
ID lgfmgkbkelacmhhcdckcakllefmakkcn
官方網址 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"
    ]
}