Greasy Fork

Greasy Fork is available in English.

屏蔽斗鱼Dota2区烦人的指人图房间

眼不见为净

// ==UserScript==
// @name 屏蔽斗鱼Dota2区烦人的指人图房间
// @version 0.0.2
// @author lrouger
// @match https://www.douyu.com/g_DOTA2
// @description 眼不见为净
// @namespace http://greasyfork.icu/zh-CN/scripts/432921
// ==/UserScript==
(function() {
	setInterval(function() {
		var targer = document.querySelector("[href='/500269']");
		if (targer) {
			targer.parentNode.parentNode.remove();
		}
	});
})();