YouTube To Text

YouTube To Text

Youtube to Text: transcribe youtube video to text, generate accurate youtube transcript. Simplify convert youtube video to text

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.4.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "16": "images/16x16.png",
      "48": "images/48x48.png",
      "64": "images/64x64.png",
      "96": "images/96x96.png",
      "128": "images/128x128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "contentscript/index.bundle.js",
        "contentscript/tag.js"
      ],
      "css": [
        "contentscript/yt_to_text.css"
      ],
      "all_frames": false
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "16": "images/16x16.png",
    "48": "images/48x48.png",
    "64": "images/64x64.png",
    "96": "images/96x96.png",
    "128": "images/128x128.png"
  }
}