Play on XBMC

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

Co to jest Play on XBMC?

Play on XBMC to rozszerzenie Chrome opracowane przez Powdor, a jego główną funkcją jest „Play video links directly on XBMC. Support for Youtube, Vimeo and direct links”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Play on XBMC

Pobierz pliki rozszerzeń Play on XBMC w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Play on XBMC Play on XBMC
ID ikckpdakfinonggpbmnaopjhkhalmohm
Oficjalny URL https://chromewebstore.google.com/detail/play-on-xbmc/ikckpdakfinonggpbmnaopjhkhalmohm
Opis Play video links directly on XBMC. Support for Youtube, Vimeo and direct links
Rozmiar pliku 123 KB
Liczba instalacji 246
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2013-12-01
Data Publikacji 2013-12-01
Ocena 2.00/5 Łącznie 5 Oceny
Deweloper Powdor
Typ Płatności free
Obsługiwane Języki 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"
    ]
}