// ==UserScript== // @name hostloc使用默认头像 // @namespace http://tampermonkey.net/ // @version 0.3 // @description try to take over the world! // @author You // @match http*://www.hostloc.com/thread-*-*-*.html // @match http*://www.hostloc.com/forum.php* // @grant none // @run-at document-end // @downloadURL none // ==/UserScript== (function() { 'use strict'; for (var i = document.getElementsByClassName("avtm").length - 1; i >= 0; i--) { document.getElementsByClassName("avtm")[i].innerHTML=""; } // Your code here... })();