// ==UserScript==
// @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();
      }
    }
  };
})();