Skip to content

Instantly share code, notes, and snippets.

@yaotti
Created May 21, 2009 14:12
Show Gist options
  • Save yaotti/115484 to your computer and use it in GitHub Desktop.
Save yaotti/115484 to your computer and use it in GitHub Desktop.
// ==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