Skip to content

Instantly share code, notes, and snippets.

@chiastolite
Created March 21, 2021 11:03
Show Gist options
  • Save chiastolite/07d8669f581e439829af1de67b420f50 to your computer and use it in GitHub Desktop.
Save chiastolite/07d8669f581e439829af1de67b420f50 to your computer and use it in GitHub Desktop.
eplusの非当選隠し
// ==UserScript==
// @name eplusの非当選隠し
// @version 0.1
// @author @chiastolite
// @match https://north2.eplus.jp/sys/main.jsp*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll("#contents > div.appli-situation > table > tbody:nth-child(2) > tr[class='win-failure']").forEach( function(element) { element.style.display ="none"; });
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment