Play on XBMC

Play on XBMC

Play video links directly on XBMC. Support for Youtube, Vimeo and direct links

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Play on XBMC",
  "version": "1.0",
  "description": "Play video links directly on XBMC. Support for Youtube, Vimeo and direct links",
  "author": "Martijn Tieland ([email protected])",
  "icons": {
    "48": "xbmc48.png",
    "128": "xbmc128.png"
  },
  "background": {
    "scripts": [
      "jquery-2.0.3.min.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-2.0.3.min.js"
      ]
    }
  ],
  "options_page": "options_page.html",
  "permissions": [
    "contextMenus",
    "storage",
    "http://*/",
    "https://*/"
  ],
  "web_accessible_resources": [
    "jquery-2.0.3.min.map"
  ]
}