Skip to content

Instantly share code, notes, and snippets.

@evert
Created March 30, 2012 19:56
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save evert/2254466 to your computer and use it in GitHub Desktop.
Save evert/2254466 to your computer and use it in GitHub Desktop.
Greasemonkey script to change every utm_source link attribute value to 'Your mom'
// ==UserScript==
// @name Referral: your mom
// @namespace yourmom
// @description This script changes every utm_source variable in links to 'Your mom'.
// @include *
// ==/UserScript==
var links = document.getElementsByTagName('a');
for(var i=0; i<links.length; i++) {
links[i].href = links[i].href.replace(/([&|?])utm_source=(.*)([&|?|^])/,"$1utm_source=Your+mom$3");
}
@augustohp
Copy link

LMAO

@n3uromanc3r
Copy link

GG

@evert
Copy link
Author

evert commented Apr 4, 2012

Be careful using this. Just noticed that it changes all '#partial' links to an absolute url. Had some javascript failing on me :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment