YouTube mp3

YouTube mp3

The YouTube-mp3 Add-on generates a "MP3" button on YouTube. Convert YouTube to mp3 and download the file to your device.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YouTube mp3",
  "version": "4.6",
  "description": "The YouTube mp3 addon generates a DOWNLOAD button on YouTube.com. Convert YouTube to mp3 and download the file to your device.",
  "icons": {
    "48": "icon.png"
  },
  "author": "Addon Developer",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://www.youtube.com/*",
        "https://www.youtube.com/*"
      ],
      "js": [
        "youtube-mp3-converter.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}