Saturday, March 10, 2012

Disable YouTube Playlist bar and autoplay in Opera

Disable YouTube Playlist bar and autoplay in Opera Tube. Duration : 4.30 Mins.


This is a short video on how to disable Youtube's Playlist bar and auto play in Opera 10.60. Link to GreaseMonkey script: userscripts.org Steps 1. Configure Opera script folder. 2. Download script 3. Edit script to disable autoplay 4. Rename script 5. Move script to Opera's script folder 6. Restart Opera. This is what my Javascript file looks like: ------------------------------------------------------ // ==UserScript== // @name Youtube - Remove Annoying Black Bar // @namespace clintxs.com // @description Remove the black bar that pops up on the bottom of Youtube video pages. // @include *youtube.com // ==/UserScript== // Set this to true if you want to disable autoplay of the next video. var disableAutoplay = true; if (disableAutoplay) var newLoc = location.href.replace(/&playnext=[0-9]+/, ''); if (newLoc != location.href) { location.href = newLoc; } var ytBar = document.getElementById('quicklist'); ytBar.parentNode.removeChild(ytBar); ------------------------------------------------------ If you are using Firefox, install the GreaseMonkey extension and then install the above script. Cheers!

Tags: Opera, youtube, playlist, gray, queue, bar, autoplay, popup, disable, remove, script, greasemonkey, annoying, irritating, tutorial, instructions, hacks, howto, educational, Linux, Windows, XP

No comments:

Post a Comment