TubeToTV

Play Youtube videos on your TV using your XBMC

Was ist TubeToTV?

TubeToTV ist eine Chrome-Erweiterung, die von sandmac entwickelt wurde, und ihr Hauptmerkmal ist "Play Youtube videos on your TV using your XBMC".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

TubeToTV-Erweiterungs-CRX-Datei herunterladen

Laden Sie TubeToTV-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

                        --Discontinued--
----------------
Play any Youtube video on your XBMC with a click of a button.
Browse www.youtube.com comfortable on your laptop and share the good stuff on the big screen.
You can find the button under the video now.

Configuration:
Put the IP or the host name in the adress field like this
127.0.0.1
127.0.0.1:8080
HOSTNAME:8080

Use the support email I've put into the extensions configuration section, it is not viable to answer questions in the comments. Currently not working with a xBox.

Donate in Bitcoin if you like:
14m4EsZKyLcwd75Q3QysgNpiXSibxy59Ei

Changelog
1.4
- new feature: send videos directly from the search site

1.3
- added the possibility to add names to the buttons, thanks to Joshua for this!
- known issue: videoplayer on youtube doesn't stop automatically when using html5

1.2
- fixed an issue where the extension wouldn't work on certain systems

1.1.2
- added debugging
- youtube layout changes 

1.1
- compatible to Frodo RC2
- corrections for youtube layout

1.0.5
- compensate for minor layout change on youtube

1.0.4
- old and new youtube layout are supported again

1.0.3
- adapted to youtube layout change

1.0
- Feature: Add to playlist button (just click on the '+' to add it to your current playlist)
- Notifications: Visual feedback if the video has been added

0.8
- update for future chrome versions
- Update to work with the latest nightlys (06/07/12)

0.7
- fixed a rare issue where the extension won't work with XBMC
- cosmetic stuff

0.6.1
- update to work with Eden RC2

0.5.4
- fixed a layout issue

0.5.3
- compatible with the HTTPS version of Youtube

0.5.2
- update for the youtube layout change (Thanks to kasperh)

0.5.1
- fixed a bug where not every Youtube video was playing correctly (Thanks to Anthony)
- fixed a layout issue

0.5
- compatible with recent nightly builds of XBMC
- added an option to select different buttons (new designs are welcome, Email me)
- use the 'Textbutton' only with the new youtube UI (http://www.youtube.com/cosmicpanda)
  (doesn't look that great on the regular youtube yet)

0.4.2
- fixed an issue that prevented some videos from playing. Thanks to Anthony on that one. :)

0.4.1
- better error catching if the XBMC configuration is not valid
- the button(s) will now indicate that the video is being transferred

0.4
- added ability to use more than one XBMC

0.3
- updated to work with the new youtube UI (http://www.youtube.com/cosmicpanda)

0.2
- added ability to change the port
- added ability to use a host name rather than an IP
- added ability to enter a username/pw

0.1
- initial release                    

Grundlegende Informationen zur Erweiterung

Name TubeToTV TubeToTV
ID appeenhjpmpcgjlejjfogcehdancpgme
Offizielle URL https://chromewebstore.google.com/detail/tubetotv/appeenhjpmpcgjlejjfogcehdancpgme
Beschreibung Play Youtube videos on your TV using your XBMC
Dateigröße 89.49 KB
Installationsanzahl 1,421
Aktuelle Version 1.4.1
Letztes Update 2015-02-19
Veröffentlichungsdatum 2015-02-19
Bewertung 4.47/5 Insgesamt 108 Bewertungen
Entwickler sandmac
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "background": {
        "scripts": [
            "\/scripts\/script.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "\/scripts\/ytube.js"
            ],
            "matches": [
                "http:\/\/www.youtube.com\/watch?*",
                "https:\/\/www.youtube.com\/watch?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "\/scripts\/ytube_search.js"
            ],
            "matches": [
                "http:\/\/www.youtube.com\/results?*",
                "https:\/\/www.youtube.com\/results?*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Play Youtube videos on your TV using your XBMC",
    "icons": {
        "128": "\/images\/icon.png"
    },
    "manifest_version": 2,
    "name": "TubeToTV",
    "options_page": "options.html",
    "permissions": [
        "http:\/\/*\/*",
        "tabs",
        "notifications"
    ],
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.4.1",
    "web_accessible_resources": [
        "\/images\/playbtn1.png",
        "\/images\/playbtn2.png",
        "\/images\/browseraction.png",
        "\/css\/yttt.css"
    ]
}