YouTube Player Controls

Adds features to YouTube player page: fill window with video, stretch, float video, set HD 4K 8K resolution, hide annotations and ads, click skip ads, click show more, loop, replay a video segment, pause at start/end, zoom and pan video.

< Feedback on YouTube Player Controls

Question/comment

§
Posted: 2017-11-23

Can't get it to work...

I've tried both 1.1.1 with the old version of YouTube and 1.1.3 with the new version combined with the latest version of Greasemonkey but can't see any extra buttons on either of the attempts.
Does it perhaps require a specific version of Firefox or an extra add-on or is there some add-ons it's know not to work with?
Tried disabling my adblockers but that made no difference.

CostasAuthor
§
Posted: 2017-11-27

Try it with Tampermonkey on Firefox

§
Posted: 2017-12-11

v1.1.3 is not compatible with greasemonkey 4, but you can port it quite easily:
Edit the script, you need to change 4 lines around the beggining:

// @grant GM_setValue
// @grant GM_getValue
...
GM_setValue(preference, new_value);
...
GM_getValue(preference);

Change the underscores to points, like this...
// @grant GM.setValue
// @grant GM.getValue
...
GM.setValue(preference, new_value);
...
GM.getValue(preference);

Save (Ctrl+S) and try again. Worked for me :smiley:

Post reply

Sign in to post a reply.