Firefox userChrome.js greasemonkeyスクリプトスレ11
■ このスレッドは過去ログ倉庫に格納されています
0751名無しさん@お腹いっぱい。
2010/03/17(水) 11:41:14ID:P/qis/Wl0setTimeout(function() {
gBrowser.mStrip.childNodes[1].appendChild(document.createElement("menuseparator"));
gBrowser.mStrip.childNodes[1].appendChild(menuitem1);
gBrowser.mStrip.childNodes[1].appendChild(menuitem2);
}, 0);
を
var tabContextMenu =
document.getAnonymousElementByAttribute(gBrowser, "anonid", "tabContextMenu")
|| document.getAnonymousElementByAttribute(document.getElementById("tabbrowser-tabs"), "anonid", "tabContextMenu");
tabContextMenu.appendChild(document.createElement("menuseparator"));
tabContextMenu.appendChild(menuitem1);
tabContextMenu.appendChild(menuitem2);
とするとか
■ このスレッドは過去ログ倉庫に格納されています