Download the Video List On Youtube

Download the Video List On Youtube

You can download the Youtube channel video list details in a text file.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.0",
  "name": "Download the Video List On Youtube",
  "description": "You can download the Youtube channel video list details in a text file.",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://youtube.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "main.js"
      ]
    }
  ],
  "action": {
    "default_title": "Download the Video List On Youtube."
  },
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "permissions": [
    "activeTab",
    "background"
  ],
  "manifest_version": 3
}