Play on XBMC

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

Cos'è Play on XBMC?

Play on XBMC è un'estensione di Chrome sviluppata da Powdor, e la sua funzione principale è "Play video links directly on XBMC. Support for Youtube, Vimeo and direct links".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Play on XBMC

Scarica i file di estensione Play on XBMC in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Play on XBMC Play on XBMC
ID ikckpdakfinonggpbmnaopjhkhalmohm
URL Ufficiale https://chromewebstore.google.com/detail/play-on-xbmc/ikckpdakfinonggpbmnaopjhkhalmohm
Descrizione Play video links directly on XBMC. Support for Youtube, Vimeo and direct links
Dimensione del File 123 KB
Conteggio Installazioni 246
Versione Corrente 1.0
Ultimo Aggiornamento 2013-12-01
Data di Pubblicazione 2013-12-01
Valutazione 2.00/5 Totale 5 Valutazioni
Sviluppatore Powdor
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}