CH Redirect

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

  1. // ==UserScript==
  2. // @name CH Redirect
  3. // @namespace Violentmonkey Scripts
  4. // @locale en
  5. // @grant none
  6. // @include /^http?://www\.collegehumor\.com.au/.*$/
  7. // @include collegehumor.com.au
  8. // @description Fixes blank pages showing up on the Australian College Humour site.
  9. // @version 0.1.0
  10. // ==/UserScript==
  11.  
  12. if(window.location.hostname.indexOf("www.collegehumor.com.au") > -1 ){
  13. url = "http://www.collegehumor.com" + window.location.pathname;
  14. window.location.assign(url + "?&edition=global");
  15. exit;
  16. }