Play on XBMC

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

Apa itu Play on XBMC?

Play on XBMC adalah ekstensi Chrome yang dikembangkan oleh Powdor, dan fitur utamanya adalah "Play video links directly on XBMC. Support for Youtube, Vimeo and direct links".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Play on XBMC

Unduh file ekstensi Play on XBMC dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Play on XBMC Play on XBMC
ID ikckpdakfinonggpbmnaopjhkhalmohm
URL Resmi https://chromewebstore.google.com/detail/play-on-xbmc/ikckpdakfinonggpbmnaopjhkhalmohm
Deskripsi Play video links directly on XBMC. Support for Youtube, Vimeo and direct links
Ukuran File 123 KB
Jumlah Instalasi 246
Versi Saat Ini 1.0
Terakhir Diperbarui 2013-12-01
Tanggal Publikasi 2013-12-01
Penilaian 2.00/5 Total 5 Penilaian
Pengembang Powdor
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}