YouTube Subtitle Reader

YouTube Subtitle Reader

Fills gap in available software/extensions, benefiting language learning, blind individuals, and contemporary cultural exposure.

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__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "0.1.7.14",
  "icons": {
    "128": "icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "settings.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "all_frames": false,
      "run_at": "document_end",
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "settings.html",
        "content.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "options_ui": {
    "page": "settings.html",
    "browser_style": false
  },
  "author": "[email protected]",
  "homepage_url": "https://github.com/conradRz/"
}