YouTube MP3 Converter

YouTube MP3 Converter

Convert YouTube videos in MP3 format without leaving the YouTube page, Supported MP3 bitrate 96Kbps to 320Kbps

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "assets/icons/icon-16.png",
    "32": "assets/icons/icon-32.png",
    "64": "assets/icons/icon-64.png",
    "128": "assets/icons/icon-128.png"
  },
  "default_locale": "en",
  "browser_action": {
    "default_icon": "assets/icons/icon-popup.png",
    "default_popup": "app/popup.html"
  },
  "author": "Addoncrop",
  "background": {
    "scripts": [
      "app/scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "app/styles/inject.css"
      ],
      "js": [
        "app/scripts/inject.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "app/options.html",
    "open_in_tab": true,
    "chrome_style": false
  },
  "permissions": [
    "alarms",
    "http://*/*",
    "https://*/*",
    "storage",
    "tabs",
    "downloads"
  ],
  "web_accessible_resources": [
    "app/options.html"
  ],
  "minimum_chrome_version": "55",
  "version": "6.4.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}