WebNowPlaying

WebNowPlaying

A browser extension that provides information and controls for media playing in the browser to external adapters.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "WebNowPlaying",
  "short_name": "WebNowPlaying",
  "description": "A browser extension that provides information and controls for media playing in the browser to external adapters.",
  "version": "3.0.1",
  "icons": {
    "128": "icons/icon-darkmode-128.png",
    "256": "icons/icon-darkmode-256.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_title": "WebNowPlaying"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "sw.js"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "injected.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}