Firefox userChrome.js greasemonkeyスクリプトスレ15
■ このスレッドは過去ログ倉庫に格納されています
0247名無しさん@お腹いっぱい。
2011/04/16(土) 22:19:32.77ID:LFTtosKF0// @name Stylish_RemoveDropDownMarker.uc.js
// @description Stylishのツールバーボタンのドロップダウンマーカーを消して右クリックメニューを復活させる
// @include main
// ==/UserScript==
(function(){
if(!"stylishOverlay" in window) return;
var stylishBtn = document.getElementById("stylish-toolbar-button");
if(stylishBtn){
if(stylishBtn.hasAttribute("type")) stylishBtn.removeAttribute("type");
stylishBtn.setAttribute("context", "stylish-popup");
}
stylishOverlay.handleStatusClick = function(event){
if(event.target.id == "stylish-panel" || event.target.id == "stylish-toolbar-button"){
if(event.button == 2){
document.getElementById(event.target.getAttribute("popup")).openPopup(event.target, "before_start");
}else if(event.button == 1){
stylishOverlay.openManage();
}
}
};
})();
■ このスレッドは過去ログ倉庫に格納されています