scrolls exactly at torrent table
// ==UserScript==
// @name Scroll to torrent table
// @namespace http://torrentsmd.com/
// @description scrolls exactly at torrent table
// @include *torrentsmd.*/browse.php*
// @version 1.0
// @author Drakulaboy
// @icon http://i.imgur.com/uShqmkR.png
// @grant none
// ==/UserScript==
/* jshint -W097 */
$(function() {
$('html, body').animate({
scrollTop: $(".tableTorrents").offset().top
}, 1);
});