Greasy Fork is available in English.

gamersky block

cxk , 小米 红米,原神

  1. // ==UserScript==
  2. // @name gamersky block
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.4
  5. // @description cxk , 小米 红米,原神
  6. // @author 7nc
  7. // @match https://www.gamersky.com/
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. var aList = document.getElementsByTagName("a");
  15. var i = 0;
  16. for(i; i<aList.length;i++){
  17. var title = aList[i].title;
  18. if(title!=''){
  19. if(title.match(/蔡徐坤|小米|红米|华为|荣耀|原神/) != null){
  20. //console.log(aList[i].title);
  21. aList[i].remove();
  22. }
  23. }
  24. }
  25.  
  26. // Your code here...
  27. })();