AudD® Music Recognition

AudD® Music Recognition

Identify music from any website in your browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "short_name": "AudD",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "manifest_version": 3,
  "author": "[email protected]",
  "version": "3.1.6",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "109.0"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "src/content.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "action": {
    "default_icon": "img/favicon.png",
    "default_popup": "src/popup/popup.html",
    "default_title": "AudD"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "host_permissions": [
    "https://api.audd.io/",
    "https://www.googleapis.com/"
  ],
  "oauth2": {
    "client_id": "875741845768-1jga752cov9r774giitn0hbeom6hkh19.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/chromewebstore.readonly",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "icons": {
    "128": "img/favicon-128.png"
  },
  "update_url": "https://clients2.google.com/service/update2/crx",
  "permissions": [
    "identity",
    "identity.email",
    "storage",
    "unlimitedStorage",
    "background",
    "tabs",
    "activeTab",
    "scripting",
    "tabCapture",
    "notifications"
  ]
}