Youtube to MP3 Downloader

Youtube to MP3 Downloader

Download youtube videos in mp3 audio format with new tab page. This addon adds a download button with video title which redirects you to site where you can download your converted mp3 file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Youtube to MP3 Downloader",
  "options_page": "options.html",
  "description": "Download youtube videos in mp3 audio format.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "version": "2.2resigned1",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "42.0"
    }
  },
  "icons": {
    "128": "images/icon.png"
  },
  "browser_action": {
    "default_icon": "images/icon.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "downloads"
  ],
  "content_scripts": [
    {
      "js": [
        "assets/js/jquery-3.2.1.min.js",
        "content.js"
      ],
      "css": [
        "style.css"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "images/*.png",
    "style.css"
  ]
}