Created
January 21, 2009 12:25
-
-
Save HusseinMorsy/49961 to your computer and use it in GitHub Desktop.
dizifilm-form-opt
This file contains hidden or 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 dizifilm-forum opimisation | |
// @namespace http://gist.github.com/49961 | |
// @description better dizifilm-forum optimisation | |
// @include http://www.dizifilm.com/forum/* | |
// ==/UserScript== | |
var GM_JQ = document.createElement('script'); | |
GM_JQ.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.0/jquery.min.js'; | |
GM_JQ.type = 'text/javascript'; | |
document.getElementsByTagName('head')[0].appendChild(GM_JQ); | |
// Check if jQuery's loaded | |
function GM_wait() { | |
if(typeof unsafeWindow.jQuery == 'undefined') { window.setTimeout(GM_wait,100); } | |
else { $ = unsafeWindow.jQuery; letsJQuery(); } | |
} | |
GM_wait(); | |
// All your GM code must be inside this function | |
function letsJQuery() { | |
// alert($); // check if the dollar (jquery) function works | |
$("body").css("background-image","none"); | |
$("body").css("background","#000"); | |
$("td, th, p, li").css("font-size","12pt"); | |
$("div.page").css("width","100%"); | |
$("body>form").hide(); | |
$("table:first").hide(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment