Play on XBMC
Play video links directly on XBMC. Support for Youtube, Vimeo and direct links
Play on XBMCとは何ですか?
Play on XBMCはPowdorによって開発されたChromeの拡張機能で、その主な機能は「Play video links directly on XBMC. Support for Youtube, Vimeo and direct links」です。
拡張機能のスクリーンショット
Play on XBMC拡張機能のCRXファイルをダウンロード
Play on XBMC拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Play on XBMC |
ID | ikckpdakfinonggpbmnaopjhkhalmohm |
公式URL | https://chromewebstore.google.com/detail/play-on-xbmc/ikckpdakfinonggpbmnaopjhkhalmohm |
説明 | Play video links directly on XBMC. Support for Youtube, Vimeo and direct links |
ファイルサイズ | 123 KB |
インストール数 | 246 |
現在のバージョン | 1.0 |
最終更新日 | 2013-12-01 |
公開日 | 2013-12-01 |
評価 | 2.00/5 合計 5 レビュー |
開発者 | Powdor |
支払い方法 | free |
対応言語 | 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" ] } |