firefox userChrome.js greasemonkeyスクリプトスレ 2at SOFTWARE
firefox userChrome.js greasemonkeyスクリプトスレ 2 - 暇つぶし2ch141:名無しさん@お腹いっぱい。
07/08/14 01:41:38 XWmP4bqd0
>>139
こんな感じ。アイコンは 好みのものを data:xxxxxxx に指定してください。
(function() {
var newButton = document.createElement("toolbarbutton");
newButton.setAttribute("label", "Menu");
newButton.setAttribute("oncommand", "document.getElementById('compactMenu').showPopup(event.target, -1, -1, 'popup', 'bottomleft', 'topleft');");
newButton.style.listStyleImage = "url(data:xxxxxxx)";
newButton.style.padding = "0";

var mPopup = document.createElement("menupopup");
mPopup.setAttribute("id", "compactMenu");
var menubar = document.getElementById("main-menubar");
var menus = menubar.childNodes.length;
for (var i = 0; i < menus; ++i) {
mPopup.appendChild(menubar.firstChild);
}

newButton.appendChild(mPopup);
menubar.appendChild(newButton);

})();


次ページ
続きを表示
1を表示
最新レス表示
レスジャンプ
類似スレ一覧
スレッドの検索
話題のニュース
おまかせリスト
オプション
しおりを挟む
スレッドに書込
スレッドの一覧
暇つぶし2ch