您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Changes all the forum stars to red.
// ==UserScript== // @name DF Forum Badge // @namespace http://tampermonkey.net/ // @version 0.3 // @description Changes all the forum stars to red. // @author Barney // @include /fairview\.deadfrontier\.com\/onlinezombiemmo\/index\.php\?topic=/ // ==/UserScript== (function() { 'use strict'; var imgSrc = document.getElementsByTagName('img'); for(var i = 0; i < imgSrc.length ; i++) { if( imgSrc[i].src.indexOf("starmod") != -1) { imgSrc[i].src = 'https://cdn.discordapp.com/attachments/272954770032033796/513903062088286208/staradmin687.png'; } } })();