Suno Downloader

Suno Downloader

Download songs from Suno AI for free.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "manifest_version": 3,
  "version": "1.2",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "permissions": [
    "contextMenus",
    "activeTab",
    "downloads"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://suno.com/song/*"
      ],
      "run_at": "document_end",
      "js": [
        "content1.js"
      ],
      "css": [
        "content.css"
      ]
    },
    {
      "matches": [
        "https://suno.com/"
      ],
      "run_at": "document_end",
      "js": [
        "content2.js"
      ],
      "css": [
        "content.css"
      ]
    },
    {
      "matches": [
        "https://suno.com/me"
      ],
      "run_at": "document_end",
      "js": [
        "content3.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/16.png",
      "48": "/images/48.png",
      "128": "/images/128.png"
    }
  },
  "icons": {
    "16": "/images/16.png",
    "48": "/images/48.png",
    "128": "/images/128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}