Web2mp3

Web2mp3

Convert web pages to .mp3 files, locally.

Additional files are visible only to premium users

manifest.json


{
  "description": "Convert web pages to .mp3 files, locally.",
  "manifest_version": 2,
  "name": "Web2mp3",
  "version": "1.1",
  "applications": {
    "gecko": {
      "id": "web2mp3@notmyidea.org",
      "strict_min_version": "50.0"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "browser_style": true,
    "default_icon": {
      "19": "icon.svg",
      "38": "icon.svg"
    },
    "default_title": "Convert to mp3"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.shazam.com/*"
      ],
      "js": [
        "./shazam.js"
      ]
    }
  ],
  "permissions": [
    "nativeMessaging",
    "notifications",
    "tabs",
    "<all_urls>"
  ]
}