YouTube Transcriber

YouTube Transcriber

Use youtube transcriber as your video summarizer and YouTube transcript generator. Transcribe video to transcript.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.1.1",
  "manifest_version": 3,
  "description": "__MSG_shortDesc__",
  "default_locale": "en",
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "48": "images/icon.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentscript/index.bundle.js"
      ],
      "css": [
        "contentscript/yt_ai_summary.css"
      ],
      "all_frames": false
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "48": "images/icon.png"
  }
}