NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name syncro-menu-modifier
// @namespace http://tampermonkey.net/
// @version 0.1
// @description modifies syncro menu to have more items
// @author Jake Paternoster (https://jcpit.com.au)
// @match https://*.syncromsp.com/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
var maxItems=11;
var ul = document.getElementsByClassName('mainnav');
var items = ul[0].getElementsByTagName('li');
for (var i = 0; i < maxItems; ++i) {
items[i].classList.remove('hidden-lg');
}
})();