MP3 Converter & Downloader

MP3 Converter & Downloader

Convert video and audio files to Mp3 format! Support the conversion of local and online media files to MP3 format and add ID3 tags.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_default_title__",
  "default_locale": "en",
  "version": "1.1.2",
  "description": "__MSG_description__",
  "background": {
    "service_worker": "./background.js"
  },
  "manifest_version": 3,
  "action": {
    "default_icon": "assets/logo/logo_x48.png"
  },
  "icons": {
    "16": "assets/logo/logo_x16.png",
    "48": "assets/logo/logo_x48.png",
    "128": "assets/logo/logo_x128.png"
  },
  "sandbox": {
    "pages": [
      "assets/decoder/index.html"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://www.youtube.com/watch*"
      ],
      "css": [],
      "js": [
        "content/content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "https://www.youtube.com/watch*"
      ],
      "js": [
        "content/youtube.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "downloads",
    "downloads.shelf",
    "contextMenus",
    "webRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}