Hide BairesDev LLC offers
当前为
// ==UserScript==
// @name Hide BairesDev LLC
// @namespace http://tampermonkey.net/
// @version 2025-01-24
// @description Hide BairesDev LLC offers
// @author You
// @match https://co.computrabajo.com/trabajo-de*
// @icon https://www.google.com/s2/favicons?sz=64&domain=computrabajo.com
// @grant none
// @license MIT
// ==/UserScript==
(function() {
$('.box_offer:has(a:contains("BairesDev LLC"))').hide();
})();