您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Displays all messages in village by default rather then having to click "Refresh Messages / Show All"
// ==UserScript== // @name BvS Full Village Messages // @namespace BvS-Razithel // @version 1.2 // @history 1.2 New domain - animecubedgaming.com - Channel28 // @history 1.1 Now https compatible (Updated by Channel28) // @description Displays all messages in village by default rather then having to click "Refresh Messages / Show All" // @include http*://*animecubed.com/billy/bvs/* // @include http*://*animecubedgaming.com/billy/bvs/* // @grant none // ==/UserScript== // Finds all instances of the Village link in the mini-menu var vLinks = document.getElementsByName("minim6"); // Counts how many instances there are of the Village link in the menu var vLinksCount = vLinks.length; // Creates a hidden input element containing showallmess=1 var showHidden = document.createElement("input"); showHidden.setAttribute("type", "hidden"); showHidden.setAttribute("name", "showallmess"); showHidden.setAttribute("value", 1); // Adds the showallmess=1 input to each instance of the Village link for (var i=0; i<vLinksCount; i++) { vLinks[i].appendChild(showHidden); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址