Notta - speech to text, transcribe web page.

Notta - speech to text, transcribe web page.

Record, live transcribe videos and audios into editable text from any web page, e.g. YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "2.0.4",
  "description": "__MSG_appDesc__",
  "default_locale": "ja",
  "minimum_chrome_version": "116",
  "icons": {
    "16": "images/logo-default.png",
    "48": "images/logo-default.png",
    "128": "images/logo-default.png"
  },
  "homepage_url": "https://www.notta.ai",
  "action": {
    "default_icon": {
      "16": "images/logo-default.png",
      "24": "images/logo-default.png",
      "32": "images/logo-default.png"
    },
    "default_title": "Notta",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "./background.js",
    "type": "module"
  },
  "permissions": [
    "tabs",
    "tabCapture",
    "activeTab",
    "cookies",
    "storage",
    "notifications",
    "offscreen"
  ],
  "host_permissions": [
    "*://*.notta.ai/*",
    "*://*.notta.io/*",
    "*://*.amazonaws.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "http://localhost:*/*",
        "https://*/*"
      ],
      "use_dynamic_url": true
    }
  ]
}