Greasy Fork is available in English.
try to take over the world!
当前为
// ==UserScript==
// @name block 蔡徐坤
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author heroin
// @match https://www.gamersky.com/
// @grant none
// ==/UserScript==
(function() {
'use strict';
var aList = document.getElementsByTagName("a");
var i = 0;
for(i; i<aList.length;i++){
var title = aList[i].title;
if(title!=''){
if(title.indexOf('蔡徐坤') > -1){
//console.log(aList[i].title);
aList[i].remove();
}
}
}
// Your code here...
})();