// ==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 // @downloadURL none // ==/UserScript== (function() { 'use strict'; var aList = document.getElementsByTagName("a"); var i = 0; for(i; i -1){ //console.log(aList[i].title); aList[i].remove(); } } } // Your code here... })();