您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
自动更改b站前端任意up主主页的粉丝数为脚本内设定值
// ==UserScript== // @name 修改B站粉丝数(本地) // @namespace http://tampermonkey.net/ // @version 1.0 // @description 自动更改b站前端任意up主主页的粉丝数为脚本内设定值 // @author EricZhou05 // @match https://space.bilibili.com/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; const observer = new MutationObserver((mutationList, observer) => { if (document.getElementsByClassName("nav-statistics__item-num") && document.getElementsByClassName("nav-statistics__item-num")[1]) { document.getElementsByClassName("nav-statistics__item-num")[1].innerText = '2333.3万'; observer.disconnect(); } }); observer.observe(document.body, { childList: true, subtree: true }); })();