2013/07/28 (日) 21:22:46 ◆ ▼ ◇ [qwerty]// ==UserScript==
// @name QWERTY
// @namespace NsQwerty
// @description
// @include http://qwerty.on.arena.ne.jp/cgi-bin/bbs.cgi*
// @version 1
// ==/UserScript==
var kaomoji = ['(;´Д`)', '(`Д´)','(´ー`)'];
var node = document.getElementsByName("post")[0].parentNode;
if(node != null) {
var n = null;
for(var j=0; j<kaomoji.length; j++){
n = document.createElement("input");
n.type = "button";
n.value = kaomoji[j];
n.onclick = function () {
document.getElementsByName("v")[0].innerHTML += "(;´Д`)<ケツ穴犯してください";
};
node.appendChild(n);
}
}
NHK見ながら書いてみたけど変数の取得ができねえ(;´Д`)あと消すボタンの横に置きたいけど面倒でやめた