This is a page for things that were on my main user scripts page that no longer work or are no longer necessary. See that page for more details, and also see that page for things that actually work.
(Click the link to go to the section; actual bookmarklet links below.)
Since I have the stylesheet (on the main page), I haven't been keeping the bookmarklet up-to-date, and it doesn't really work anymore. (I should fix that at some point.)
Fix the new YouTube player so that the playback bar is always visible and doesn't cover up the bottom of the video. Apply the user style (better), OR put the bookmarklet in your bookmarks bar, and click it when you have a video open (the bookmarklet will apply only to that tab).
Known issues:
Bookmarklet: No YT Autohide (bookmark this link)
javascript:document.getElementsByClassName('ytp-chrome-bottom')[0].style.bottom='-41px';document.getElementById('movie_player').style.overflow='visible';document.getElementById('placeholder-player').style.marginBottom='51px';document.getElementsByClassName('ytp-gradient-bottom')[0].style.display='none';document.getElementsByClassName('ytp-chrome-bottom')[0].style.opacity='1.0';document.getElementsByClassName('ytp-chrome-bottom')[0].style.background='black';document.getElementById('movie_player').style.cursor='default';undefined;
Beautified:
javascript:
document.getElementsByClassName('ytp-chrome-bottom')[0].style.bottom = '-41px';
document.getElementById('movie_player').style.overflow = 'visible';
document.getElementById('placeholder-player').style.marginBottom = '51px';
document.getElementsByClassName('ytp-gradient-bottom')[0].style.display = 'none';
document.getElementsByClassName('ytp-chrome-bottom')[0].style.opacity = '1.0';
document.getElementsByClassName('ytp-chrome-bottom')[0].style.background = 'black';
document.getElementById('movie_player').style.cursor = 'default';
undefined;
Update: This script seems to no longer be necessary since their latest redesign.
On each page in TV Tropes, there are various display options. When you're not logged in, only "Show Spoilers" is enabled, with the other options prompting you to log in if you click them. However, if you enable the options, they work perfectly fine, and there's even perfectly working code to save the options locally like how Show Spoilers works (except for Wide Load, but this script also fixes that). Thus, this script enables those options.
Notes:
The user script: Enable TVTropes display options
Fix Bitbucket scrolling [S]: Bitbucket for no apparent reason has the main content scrolling separately from the window, which makes scrolling work weirdly (scrolling diagonally doesn't work). User style: Fix Bitbucket scrolling (This doesn't seem to be an issue anymore.)