Created
March 30, 2012 19:56
-
-
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'
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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"); | |
} |
GG
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
LMAO