2005-06-25 [長年日記]
λ. 海猿
λ. Greasemonkeyでリンク先のURLを書き換え
某サイトでかまされていたリダイレクトがうざかったので、以下のようなスクリプトで対処。簡単なスクリプトだけど案外便利。
const links = document.links for (var i in links) { const link = links[i] if (link.href) { if (link.href.match(/.+(http://[^&;]*)/)) link.href = RegExp.$1 else if (link.href.match(/.+(http%3a%2f%2f[^&;]*)/i)) link.href = unescape(RegExp.$1) } }