Youtube Subtitle Download Helper

Youtube Subtitle Download Helper

This extension allows you to download captions data from Youtube. You can download captions data in multiple file formats.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Youtube Subtitle Download Helper",
  "version": "1.2.0",
  "description": "This extension allows you to download  captions data from Youtube. You can download captions data in multiple file formats.",
  "permissions": [
    "downloads"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "./js/content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Youtube Subtitle Download Helper",
    "default_popup": "./html/popup.html",
    "default_icon": {
      "16": "images/icon-16.png",
      "24": "images/icon-24.png",
      "32": "images/icon-32.png",
      "48": "images/icon-48.png",
      "96": "images/icon-96.png",
      "128": "images/icon-128.png"
    }
  },
  "icons": {
    "16": "images/icon-16.png",
    "24": "images/icon-24.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "96": "images/icon-96.png",
    "128": "images/icon-128.png"
  },
  "manifest_version": 3
}