Last active
August 29, 2015 14:24
-
-
Save marcelovani/99e99f06c3be97f4ac14 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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