Smule downloader

Smule downloader

This extension helps to download audio files directly from the smule website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Smule downloader",
  "description": "This extension helps to download audio files directly from the smule website",
  "version": "1.1",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Made with l<3ve by j0y"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.smule.com/*"
      ],
      "js": [
        "Smule.js"
      ]
    }
  ]
}