asameshimae / Anonymous shortlisting in JobTrain (UoM)

// ==UserScript==
// @name         Anonymous shortlisting in JobTrain (UoM)
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Try to hide unnecessary PII from JobTrain (UoM - change scope for other insts) to make shortlisting fairer. Disable the script if any issues. No warranty etc.
// @author       @asameshimae
// @match        https://www.jobs.manchester.ac.uk/client/JobsAndTalents/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=manchester.ac.uk
// @grant        none
// @license MIT
// @copyright 2022, asameshimae (https://openuserjs.org/users/asameshimae)
// @updateURL https://openuserjs.org/meta/asameshimae/Anonymous_shortlisting_in_JobTrain_(UoM).meta.js
// @downloadURL https://openuserjs.org/install/asameshimae/Anonymous_shortlisting_in_JobTrain_(UoM).user.js
// ==/UserScript==

(function() {
    let r='▞▞▞▞▞';let i=setInterval(_=>{[...document.querySelectorAll('.candidate-name-icon,.candidatelistdetails-right,.candidate-info h4,.candidateDetails')].forEach(e=>e.textContent=r);let t=[...document.querySelectorAll('tr')].filter(e=>e.textContent==='Personal Contact Details');t&&[...t[0].parentElement.children].slice(0,15).forEach(e=>e.style.display='none')},200)
})();