Created
March 21, 2021 11:03
-
-
Save chiastolite/07d8669f581e439829af1de67b420f50 to your computer and use it in GitHub Desktop.
eplusの非当選隠し
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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