YePpHa / YouTubeCenter

YouTube Center is a userscript designed to expand the functionality of YouTube. It includes the ability to download the video you're watching, auto selecting your preferred video quality and much more.
MIT License
2.89k stars 520 forks source link

About embeded player #1593

Open pep0w opened 9 years ago

pep0w commented 9 years ago

It would be nice to always show the YouTube button, so we can easily go to the full video with just a click. And also make the like and dislike buttons visible on top of the player. As well as making them grayed out when we haven't rated the video. Here's what I mean: instead of no like button and no go to youtube button this http://oi59.tinypic.com/5c0ghc.jpg make those visible and grayed out, like here. http://oi59.tinypic.com/iemg5w.jpg

Removing the watch later button could be usefull as well.

I know that in the HTML5 player it won't be a problem, but if it is possible to do it on the flash player as well it would be great.

Inyokus commented 9 years ago

As a workaround for the missing YouTube button, you can click the title in the header of the embedded video to get to the full watch page for that video.

ireun commented 9 years ago

I don't think it's possible, see #1225 to learn why..

pep0w commented 9 years ago

I actually did that with a stylesheet, using stylish.

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("youtube.com") {

.ytp-button-dislike,.ytp-button-like {
display: inline-block !important;
opacity: 0.5 !important;
}
.sentiment-like .ytp-button-like {
opacity: 0.9 !important;
}
.sentiment-dislike .ytp-button-dislike {
opacity: 0.9 !important;
}
.ytp-button-share {
display: none !important;
}
}