您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
更換場外進板圖
// ==UserScript== // @name 場外進板圖替換改 // @namespace http://tampermonkey.net/ // @version 1.0.2 // @description 更換場外進板圖 // @author G11K, jtdjdu6868 // @match https://forum.gamer.com.tw/A.php?bsn=60076 // @match https://forum.gamer.com.tw/ // @icon https://forum.gamer.com.tw/favicon.ico // @grant // @run-at document-start // ==/UserScript== (function() { 'use strict'; //input your welcome img url below var welcome_img = "https://pixiv.cat/87066621.jpg"; var change = () => { if(!document.head) { setTimeout(change); return; } var style = document.createElement("style"); document.head.appendChild(style); style.sheet.insertRule(".FM-abox1 img {display: none}", 0); style.sheet.insertRule(`.FM-abox1 {background-image: url("${welcome_img}")!important; background-repeat: no-repeat!important; background-size: cover!important}`, 0); style.sheet.insertRule("a[href=\"A.php?bsn=60076\"]>img:first-child {display: none}", 0); } change(); if(location.href == "https://forum.gamer.com.tw/") { window.addEventListener("DOMContentLoaded", () => { var img = new Image(); img.src = welcome_img; document.querySelector("a[href=\"A.php?bsn=60076\"]").appendChild(img); }); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址