Sleazy Fork is available in English.

CH Redirect

Fixes blank pages showing up on the Australian College Humour site.

// ==UserScript==
// @name CH Redirect
// @namespace Violentmonkey Scripts
// @locale en
// @grant none
// @include /^http?://www\.collegehumor\.com.au/.*$/
// @include collegehumor.com.au
// @description Fixes blank pages showing up on the Australian College Humour site.
// @version 0.1.0
// ==/UserScript==

if(window.location.hostname.indexOf("www.collegehumor.com.au") > -1 ){
	url = "http://www.collegehumor.com" + window.location.pathname;
	window.location.assign(url + "?&edition=global");
    exit;
}