Created
February 23, 2012 11:35
-
-
Save Nyoho/1892484 to your computer and use it in GitHub Desktop.
"many" to "something"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
いっぱいに対して何かをするグリモンです。