Play on XBMC

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

Play on XBMC là gì?

Play on XBMC là một tiện ích mở rộng Chrome được phát triển bởi Powdor, và tính năng chính của nó là "Play video links directly on XBMC. Support for Youtube, Vimeo and direct links".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Play on XBMC

Tải xuống các tệp mở rộng Play on XBMC dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Play on XBMC Play on XBMC
ID ikckpdakfinonggpbmnaopjhkhalmohm
URL Chính Thức https://chromewebstore.google.com/detail/play-on-xbmc/ikckpdakfinonggpbmnaopjhkhalmohm
Mô tả Play video links directly on XBMC. Support for Youtube, Vimeo and direct links
Kích Thước Tệp 123 KB
Số Lần Cài Đặt 246
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2013-12-01
Ngày Phát Hành 2013-12-01
Đánh Giá 2.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Powdor
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}