Created
July 3, 2011 05:56
-
-
Save cxx/1061985 to your computer and use it in GitHub Desktop.
いい…
This file contains 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 いい… | |
// @namespace http://twitter.com/cxx | |
// @include http://www.facebook.com/plugins/like.php?* | |
// @version 1.2.1 | |
// ==/UserScript== | |
var texts = document.evaluate('.//text()', document.body, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); | |
for (var i = 0, len = texts.snapshotLength; i < len; i++) { | |
var t = texts.snapshotItem(i); | |
t.data = t.data.replace('いいね!', 'いい…'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment