SHOW:
|
|
- or go back to the newest paste.
| 1 | // ==UserScript== | |
| 2 | // @name Feedly UTM Redirector | |
| 3 | // @namespace http://use.i.E.your.homepage/ | |
| 4 | - | // @version 0.1 |
| 4 | + | // @version 0.2 |
| 5 | // @description utm_source=feedlyが末尾に存在するアドレスを開いた時に自動的にリダイレクトします。 | |
| 6 | - | // @match http://*.* |
| 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 | })(); |