Remove Feedburner Link Information

Removes tracking info from feedburner links

  1. // ==UserScript==
  2. // @name Remove Feedburner Link Information
  3. // @namespace http://userscripts.org/users/Scuzzball
  4. // @include *
  5. // @version 1.0
  6. // @description Removes tracking info from feedburner links
  7. // ==/UserScript==
  8.  
  9. if(window.location.search.match(/utm_source=feedburner/))
  10. {
  11. window.location.search = '';
  12. }