Skip to content

Instantly share code, notes, and snippets.

@marcelovani
Last active August 29, 2015 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcelovani/99e99f06c3be97f4ac14 to your computer and use it in GitHub Desktop.
Save marcelovani/99e99f06c3be97f4ac14 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Yahoo mail
// @namespace work
// @description Tweaks for UI
// @include *mail.yahoo.*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
// @version 1
// ==/UserScript==
$(document).ready(function() {
tweak();
setInterval(tweak, 15000);
});
function tweak() {
$(".wide-right-rail #shellcontent").css('right', "1px");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment