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 |
官方網址 | 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" ] } |