Created
February 18, 2016 04:48
-
-
Save utgwkk/74a892f67362803c2174 to your computer and use it in GitHub Desktop.
arbeit page no hogehoge suruyatu
This file contains hidden or 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 arbeit page no hogehoge suruyatu | |
// @namespace | |
// @version 0.1 | |
// @description s-coop.net のあれ | |
// @author utgwkk | |
// @match https://rcpt.kyoto-bauc.or.jp/kyodai_arbeit/* | |
// ==/UserScript== | |
'use strict'; | |
(function(){const t=document.getElementsByTagName('tr'); | |
for(var i=0;i<t.length;i++){ | |
let tr=t[i]; | |
if(tr.hasChildNodes()&&tr.childNodes.length>10&&tr.childNodes[1].tagName=='TD'&&!(tr.childNodes[9].innerText.includes('短期'))) | |
tr.style.display='none'; | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment