Skip to content

Instantly share code, notes, and snippets.

@aquarla
Created May 20, 2010 06:52
Show Gist options
  • Save aquarla/407280 to your computer and use it in GitHub Desktop.
Save aquarla/407280 to your computer and use it in GitHub Desktop.
実況封じの術
// ==UserScript==
// @name remove now
// @namespace la.aquar.greasemonkey
// @description 実況封じ
// @include http://twitter.com/*
// ==/UserScript==
var nodes = document.getElementsByTagName('span');
for (var i = 0; i < nodes.length; i++) {
if (nodes[i].className == 'entry-content') {
nodes[i].innerHTML = nodes[i].innerHTML.replace(/ナ[ー-]+ウ[ww]*/g,"なう");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment