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