Music Beta Play/Pause controller

Music Beta Play/Pause controller

A browser action that will create a tab with the Music Beta Web App if none is already opened in the current browser window and…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Music Beta Play/Pause controller",
  "version": "1.0.5",
  "icons": {
    "16": "logo-16x16.png",
    "48": "logo-48x48.png",
    "128": "logo-128x128.png"
  },
  "browser_action": {
    "name": "Play/Pause",
    "default_icon": "logo-19x19.ico",
    "default_title": "Play/Pause controller"
  },
  "omnibox": {
    "keyword": "mc"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://play.google.com/*"
      ],
      "js": [
        "play_state_notifier.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "*://play.google.com/*"
  ]
}