Hellooo for Chrome

Hellooo for Chrome

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

Merlin
Additional files are visible only to premium users

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"
  ]
}