Skip to content

Instantly share code, notes, and snippets.

@johnhawkinson
Last active July 7, 2020 00:09
Show Gist options
  • Save johnhawkinson/2049558f1c02f068c05b672fe23a5c80 to your computer and use it in GitHub Desktop.
Save johnhawkinson/2049558f1c02f068c05b672fe23a5c80 to your computer and use it in GitHub Desktop.
cmecf appellate open menus
// ==UserScript==
// @name cmecf appellate open menus
// @version 0.1c
// @include https://ecf.ca*.uscourts.gov/n/AttorneyFiling/pages/secured/main.jsf
// @match https://ecf.ca1.uscourts.gov/n/AttorneyFiling/pages/secured/main.jsf
// @grant none
// ==/UserScript==
(function() {
'use strict';
var menus = document.querySelectorAll('ul.ui-menu-list li ul.ui-menu-child');
for (var m of menus) {
m.style.display = 'block';
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment