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”。

扩展截图

screenshot

下载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 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"
    ]
}