Skip to content

Instantly share code, notes, and snippets.

@TJC
Last active August 29, 2015 14:24
Show Gist options
  • Select an option

  • Save TJC/9055adc2aef00ce2ee74 to your computer and use it in GitHub Desktop.

Select an option

Save TJC/9055adc2aef00ce2ee74 to your computer and use it in GitHub Desktop.
OzIsuzu tampermonkey userscript
// ==UserScript==
// @name OzIsuzu tamper
// @namespace http://your.homepage/
// @version 0.1
// @description Tweaks to OzIsuzu forum pages
// @author You
// @match http://www.ozisuzu.com.au/*
// @grant none
// ==/UserScript==
jQuery(document).ready(function() {
var $ = jQuery;
$("body").css("background", "rgb(255,255,255)");
$("#header").css("background-color", "white");
$("#header li").css("background-color", "white");
$("#header a").css("color", "black");
$(".social#css3").hide();
$("#footer_widget").hide();
$("#footer").hide();
$("#logo").hide();
$(".wrapper").css({"margin": "0 0", "width": "1400px" });
$("#bar").css("float", "left");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment