Play on XBMC

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

Vad är Play on XBMC?

Play on XBMC är en Chrome-tillägg utvecklad av Powdor, och dess huvudfunktion är "Play video links directly on XBMC. Support for Youtube, Vimeo and direct links".

Tilläggsskärmbilder

screenshot

Ladda ner Play on XBMC-förlängningens CRX-fil

Ladda ner Play on XBMC-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Play on XBMC Play on XBMC
ID ikckpdakfinonggpbmnaopjhkhalmohm
Officiell webbadress https://chromewebstore.google.com/detail/play-on-xbmc/ikckpdakfinonggpbmnaopjhkhalmohm
Beskrivning Play video links directly on XBMC. Support for Youtube, Vimeo and direct links
Filstorlek 123 KB
Antal Installationer 246
Aktuell Version 1.0
Senast Uppdaterad 2013-12-01
Publiceringsdatum 2013-12-01
Betyg 2.00/5 Totalt 5 Betyg
Utvecklare Powdor
Betalningssätt free
Stödda Språk 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"
    ]
}