Skip to content

Instantly share code, notes, and snippets.

@stianeikeland
Created February 28, 2013 11:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stianeikeland/5056122 to your computer and use it in GitHub Desktop.
Save stianeikeland/5056122 to your computer and use it in GitHub Desktop.
Avoid the stupid celebrity news at vg.no / db.no
// ==UserScript==
// @name          redirect
// @description    redirect
// @include        http://www.vg.no/
// @include http://www.dagbladet.no/
// @version        1.0
// ==/UserScript==
if (window.location == 'http://www.vg.no/')
window.location = 'http://www.vg.no/nyheter/'
if (window.location == 'http://www.dagbladet.no/')
window.location = 'http://www.dagbladet.no/nyheter/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment