A Youtube Downloader

A Youtube Downloader

A simple extension for superfast and easy YouTube downloads in MP3 and MP4 formats.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "A Youtube Downloader",
  "version": "1.0",
  "description": "Download YouTube videos as MP3 or MP4",
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "content_security_policy": "script-src 'self' https://youtube-downloader-api-pearl.vercel.app; object-src 'self'",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{9fa2ec7b-e05f-465e-bbf1-8881899cf365}"
    }
  }
}