BlackList mot-clés

Efface les topics de la recherche forum par mot-clés

// ==UserScript==
// @name        BlackList mot-clés
// @version     1.0
// @description Efface les topics de la recherche forum par mot-clés
// @include     http://www.jeuxvideo.com/forums/*
// @namespace https://gf.qytechs.cn/users/11572
// ==/UserScript==
 
function blacklist() {
  var blacklist = ['mot_cle', 'modération'];
  var elements = document.getElementsByClassName('sujet-topic');
  
  for(var j = 0; j < blacklist.length; j++){
    for (var i = 0; i < elements.length; i++) {
      if (elements[i].getElementsByClassName('titre-topic')[0].children[0].text.trim().toLowerCase().match(blacklist[j].trim().toLowerCase())) {
	  elements[i].parentNode.style.display = 'none';
	  }
    }
  }
}

blacklist();
addEventListener('instantclick:newpage', blacklist);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址