Howrse Menu Click Not Hover

Changes the menu to on mouse click instead of hover.

当前为 2014-05-29 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Howrse Menu Click Not Hover
  3. // @namespace hmcnh
  4. // @include http://*.howrse.*/*
  5. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
  6. // @require https://gist.githubusercontent.com/BrockA/2625891/raw/waitForKeyElements.js
  7. // @version 1.0
  8. // @author Janiss
  9. // @description Changes the menu to on mouse click instead of hover.
  10. // ==/UserScript==
  11.  
  12. $("#menu a[class*='highlight']").each(function(){ $(this).attr('onclick', $(this).attr('onmouseover')); $(this).removeAttr('onmouseover'); });