Skip to content

Instantly share code, notes, and snippets.

@st98
Created March 7, 2015 09:06
Show Gist options
  • Save st98/5e9fe4f45a8ed9520f61 to your computer and use it in GitHub Desktop.
Save st98/5e9fe4f45a8ed9520f61 to your computer and use it in GitHub Desktop.
ニコニコ動画の ?ref=… を消すヤツ。
Array.prototype.forEach.call(document.querySelectorAll('a'), function (a) {
a.href = a.href.replace(/(sm\d+)\?.+/, '$1');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment