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