SMP3 - Mp3 converter & downloader

SMP3 - Mp3 converter & downloader

A simple mp3 converter. Download YouTube mp3, TikTok mp3, Bilibili mp3, and so on.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/inject.js"
      ],
      "matches": [
        "http://*.bilibili.com/*",
        "https://*.bilibili.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_icon": {
      "128": "logo.png"
    }
  },
  "icons": {
    "128": "logo.png"
  },
  "default_locale": "en",
  "description": "__MSG_extDes__",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "downloads",
    "storage",
    "contextMenus",
    "scripting",
    "declarativeNetRequest",
    "alarms"
  ],
  "sandbox": {
    "pages": [
      "mp3/decoder/index.html"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "version": "1.0.0",
  "homepage_url": "https://microsoftedge.microsoft.com/addons/detail/jokfealebkhklcldcgckhhbkccogpmla",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}