您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Replaces the coffee cup in Internet Roadtrip with a can of beans
当前为
// ==UserScript== // @name Internet Roadtrip - Can of Beans // @namespace http://tampermonkey.net/ // @version 1.2 // @description Replaces the coffee cup in Internet Roadtrip with a can of beans // @match https://neal.fun/internet-roadtrip/* // @grant none // @license MIT // ==/UserScript== (function () { 'use strict'; const coffeeURL = "https://neal.fun/internet-roadtrip/coffee.png"; const beansImage = "https://th.bing.com/th/id/R.67475ccd6e33fa9a7a539a66d149e0ec?rik=ye23CRQV2NOD%2fw&riu=http%3a%2f%2fpluspng.com%2fimg-png%2ftin-of-beans-png-image-canned-baked-beans-png-dayz-standalone-wiki-fandom-powered-by-wikia-425.png&ehk=1ZVR%2fL4lprKq8HEaVZ4MEkdwMlgbAXGTlQAhgPfa2Dw%3d&risl=&pid=ImgRaw&r=0"; const replaceCoffeeCup = () => { document.querySelectorAll('img').forEach(img => { if (img.src === coffeeURL || img.src.startsWith(coffeeURL + "?")) { img.src = beansImage; img.style.objectFit = "cover"; img.style.borderRadius = "5px"; img.style.boxShadow = "0 0 8px rgba(0,0,0,0.3)"; img.style.zIndex = "9999"; } }); }; const observer = new MutationObserver(replaceCoffeeCup); observer.observe(document.body, { childList: true, subtree: true }); window.addEventListener("load", () => setTimeout(replaceCoffeeCup, 1000)); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址