Advertisement
Guest User

Feedly_UTM_Redirector.user.js

a guest
May 13th, 2013
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name       Feedly UTM Redirector
  3. // @namespace  http://use.i.E.your.homepage/
  4. // @version    0.2
  5. // @description  utm_source=feedlyが末尾に存在するアドレスを開いた時に自動的にリダイレクトします。
  6. // @match      http://*.*utm_source=feedly
  7. // @copyright  tw@2ch
  8. // @run-at     document-start
  9. // ==/UserScript==
  10. (function(){
  11.     if(location.href.match(/(http.*)(\?|&)utm_source=feedly/)){
  12.         location.href = RegExp.$1;
  13.     }
  14. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement