Plauser

Plauser

A Chrome extension that allows you to play/pause your current playing track from any tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Plauser",
  "short_name": "Plauser",
  "description": "A Chrome extension that allows you to play/pause your current playing track from any tab.",
  "version": "0.9.1",
  "author": "Kieran O'Neill",
  "permissions": [
    "tabs",
    "storage",
    "https://play.google.com/music/*",
    "https://play.spotify.com/*",
    "https://www.youtube.com/*",
    "http://grooveshark.com/*",
    "https://soundcloud.com/*"
  ],
  "icons": {
    "16": "images/icon-plauser-16.png",
    "48": "images/icon-plauser-48.png",
    "128": "images/icon-plauser-128.png"
  },
  "background": {
    "page": "background.html"
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "images/icon-plauser-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content-scripts/content-script-key-event.js",
        "js/global.js"
      ],
      "run_at": "document_start"
    }
  ]
}