Play on XBMC
Play video links directly on XBMC. Support for Youtube, Vimeo and direct links
Was ist Play on XBMC?
Play on XBMC ist eine Chrome-Erweiterung, die von Powdor entwickelt wurde, und ihr Hauptmerkmal ist "Play video links directly on XBMC. Support for Youtube, Vimeo and direct links".
Erweiterungsscreenshots
Play on XBMC-Erweiterungs-CRX-Datei herunterladen
Laden Sie Play on XBMC-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Play on XBMC |
ID | ikckpdakfinonggpbmnaopjhkhalmohm |
Offizielle URL | https://chromewebstore.google.com/detail/play-on-xbmc/ikckpdakfinonggpbmnaopjhkhalmohm |
Beschreibung | Play video links directly on XBMC. Support for Youtube, Vimeo and direct links |
Dateigröße | 123 KB |
Installationsanzahl | 246 |
Aktuelle Version | 1.0 |
Letztes Update | 2013-12-01 |
Veröffentlichungsdatum | 2013-12-01 |
Bewertung | 2.00/5 Insgesamt 5 Bewertungen |
Entwickler | Powdor |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |