#NowPlaying for Google Play Music

#NowPlaying for Google Play Music

It's tools to share music playing on Youtube Music to SNS.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "#NowPlaying for Google Play Music",
  "version": "1.3.0",
  "description": "It's tools to share music playing on Youtube Music to SNS.",
  "short_name": "#NowPlaying",
  "author": "mizdra",
  "homepage_url": "https://now-playing-for-gpm.mizdra.net",
  "permissions": [
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://music.youtube.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "./pages/ytm/content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "./pages/options.html",
    "open_in_tab": true
  },
  "icons": {
    "48": "img/logo-48.png",
    "96": "img/logo-96.png",
    "128": "img/logo-128.png"
  },
  "manifest_version": 2
}