Skip to content

Instantly share code, notes, and snippets.

@958
Created July 24, 2009 05:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 958/153872 to your computer and use it in GitHub Desktop.
Save 958/153872 to your computer and use it in GitHub Desktop.
[sleipnir]twitter to hiwihhihi-
// ==UserScript==
// @name twitter to hiwihhihi-
// @include http*
// ==/UserScript==
(function(){
var f = function(doc){
var r = doc.body.createTextRange();
while(r.findText('twitter')) r.text = '\u30D2\u30A5\u30A3\u30C3\u30D2\u30D2\u30FC';
};
f(document);
if (window.AutoPagerize) window.AutoPagerize.addDocumentFilter(function(doc){ f(doc); });
})(document);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment