Created
May 21, 2009 14:12
-
-
Save yaotti/115484 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
// ==UserScript== | |
// @name mixi echo theme saver | |
// @namespace http://www.yaotti.net | |
// @include http://mixi.jp/recent_echo.pl | |
// ==/UserScript== | |
(function(){ | |
var area = unsafeWindow.document.getElementById("EchoComment"); | |
function onFocus() { | |
area.style.color="black"; | |
area.value = "「"+area.innerHTML+"」"; | |
}; | |
area.onfocus = onFocus; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment