Play on XBMC

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

Hvad er Play on XBMC?

Play on XBMC er en Chrome-udvidelse udviklet af Powdor, og dens hovedfunktion er "Play video links directly on XBMC. Support for Youtube, Vimeo and direct links".

Udvidelsesskærmbilleder

screenshot

Download Play on XBMC-udvidelses-CRX-fil

Download Play on XBMC-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Play on XBMC Play on XBMC
ID ikckpdakfinonggpbmnaopjhkhalmohm
Officiel URL https://chromewebstore.google.com/detail/play-on-xbmc/ikckpdakfinonggpbmnaopjhkhalmohm
Beskrivelse Play video links directly on XBMC. Support for Youtube, Vimeo and direct links
Filstørrelse 123 KB
Antal Installationer 246
Nuværende Version 1.0
Senest Opdateret 2013-12-01
Udgivelsesdato 2013-12-01
Bedømmelse 2.00/5 Samlet 5 Bedømmelser
Udvikler Powdor
Betalingsmetode free
Understøttede Sprog 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"
    ]
}