AppleMusic-Notification

AppleMusic-Notification

You can display and operate Apple Music music information during playback. In addition, the lyrics can be displayed .

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_ext_name__",
  "version": "2.0.9.4",
  "manifest_version": 3,
  "description": "__MSG_ext_desc__",
  "default_locale": "en",
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "icons": {
    "128": "icon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "svg/twitter.svg",
        "svg/miniw.svg",
        "svg/settings.svg",
        "svg/fullscr.svg",
        "svg/play.svg",
        "svg/pause.svg",
        "svg/next.svg",
        "svg/prev.svg",
        "minip.html",
        "minip.js",
        "nv_minip.html",
        "nv_minip.js",
        "top_scr.js",
        "dark_sh.css"
      ],
      "matches": [
        "https://music.apple.com/*",
        "https://*.blobstore.apple.com/*",
        "https://*.mzstatic.com/*"
      ]
    }
  ],
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://music.apple.com/*"
      ],
      "js": [
        "content.js",
        "top_scr.js"
      ]
    }
  ]
}