see https://github.com/dolpen/userjs-injector or paste to your user.js
Created
August 26, 2016 08:14
-
-
Save dolpen/543befbc4ea75c51f131e55e761a8639 to your computer and use it in GitHub Desktop.
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
[].slice.call( | |
document.querySelector('.tweeting-text').childNodes | |
).filter(function(n){ | |
return n.nodeType === 3 && n.nodeValue.trim().length > 3; | |
}).forEach(function(n){ | |
n.nodeValue = '反省文を送信する'; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment