Rdio Remote

Rdio Remote

Control Rdio regardless of the active browser tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Rdio Remote",
  "version": "1.1.0",
  "manifest_version": 2,
  "description": "Control Rdio regardless of the active browser tab.",
  "background": {
    "scripts": [
      "js/lib/underscore-min.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_popup": "html/popup.html"
  },
  "icons": {
    "32": "images/rdio-remote-icon_32.png",
    "64": "images/rdio-remote-icon_64.png",
    "128": "images/rdio-remote-icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.rdio.com/*"
      ],
      "js": [
        "js/lib/underscore-min.js",
        "js/lib/jquery-2.1.3.min.js",
        "js/pageContent.js"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ]
}