Play on XBMC
Play video links directly on XBMC. Support for Youtube, Vimeo and direct links
What is Play on XBMC?
Play on XBMC is a Chrome extension developed by Powdor, and its main feature is "Play video links directly on XBMC. Support for Youtube, Vimeo and direct links".
Extension Screenshots
Download Play on XBMC Extension CRX File
Download Play on XBMC extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Simple extension to allow playback of any video link through XBMC. It now supports youtube and vimeo through the standard plugins, other links are played directly. Use context menu of links to access functions
Extension Basic Information
Name | Play on XBMC |
ID | ikckpdakfinonggpbmnaopjhkhalmohm |
Official URL | https://chromewebstore.google.com/detail/play-on-xbmc/ikckpdakfinonggpbmnaopjhkhalmohm |
Description | Play video links directly on XBMC. Support for Youtube, Vimeo and direct links |
File Size | 123 KB |
Installation Count | 246 |
Current Version | 1.0 |
Last Updated | 2013-12-01 |
Publish Date | 2013-12-01 |
Rating | 2.00/5 Total 5 Ratings |
Developer | Powdor |
Payment Type | free |
Supported Languages | en-US |
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" ] } |