WFH FORM: https://docs.google.com/forms/d/e/1FAIpQLSdySojV4glrWbYAMuPPDS6oL-5PVWpl0vD26HLY35LJGXN5Nw/viewform
by Epona
Userscript
// ==UserScript==
// @name Block LinkedIn Promoted job
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 一野BLOCK 撚咗 linkedin Promoted job
// @author You
// @match http*://www.linkedin.com/jobs/search*
// @icon https://www.google.com/s2/favicons?sz=64&domain=linkedin.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
const out = /(Promoted)/g
const callback = (records) => {
document.querySelectorAll(".scaffold-layout__list-container .job-card-container").forEach(element => {
element.textContent.match(out)?.length && element.remove();
})
}
const observer = new MutationObserver(callback);
observer.observe(document.body, { childList: true, subtree: true })
})();