Skip to content

Instantly share code, notes, and snippets.

@Nyoho
Created February 23, 2012 11:35
Show Gist options
  • Save Nyoho/1892484 to your computer and use it in GitHub Desktop.
Save Nyoho/1892484 to your computer and use it in GitHub Desktop.
"many" to "something"
// ==UserScript==
// @name Many to something
// @namespace http://kita.dyndns.org/
// @description いっぱいに対して何かをします。
// @include http://*
// @include https://*
// @exclude https://mail.google.com/*
// ==/UserScript==
function manyToSomething(){
document.body.innerHTML = document.body.innerHTML.replace(/一杯/g, "おっぱい");
document.body.innerHTML = document.body.innerHTML.replace(/いっぱ/g, "おっぱ");
setTimeout('manyToSomething()', 30000);
}
manyToSomething();
@Nyoho
Copy link
Author

Nyoho commented Feb 23, 2012

いっぱいに対して何かをするグリモンです。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment