CaptionSpeaker

CaptionSpeaker

CaptionSpeaker is a chrome extension that allows you to hear subtitles in a specified language when they are set on 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": "CaptionSpeaker",
  "default_locale": "en",
  "description": "__MSG_appDescription__",
  "version": "2.0.4",
  "icons": {
    "16": "icon/Icon16.png",
    "48": "icon/Icon48.png",
    "128": "icon/Icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "storage"
  ],
  "action": {
    "default_title": "__MSG_PageActionDefaultTitle__",
    "default_icon": {
      "19": "icon/Icon19.png",
      "24": "icon/Icon24.png",
      "32": "icon/Icon32.png"
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "commands": {
    "enableEvent": {
      "description": "__MSG_KeyboardShortcutNameEnableEvent__"
    },
    "disableEvent": {
      "description": "__MSG_KeyboardShortcutNameDisableEvent__"
    }
  }
}