// ==UserScript== // @name Erhaltung der Moral // @downloadURL https://wiki.tilde.fun/_export/code/de/guide/mydealz?codeblock=0 // @namespace Violentmonkey Scripts // @match https://www.mydealz.de/* // @grant none // @version 1.0 // @author helix // @description Removes offers by certain vendors from MyDealz // ==/UserScript== let merchantNames = [ 'Amazon', 'NBB' ] javascript:setInterval(function(){ let hits = document.querySelectorAll('span.cept-merchant-name') for (let node of hits) { if (merchantNames.includes(node.textContent.split('.', 1)[0])) { node.closest('article').remove() } } }, 400);