您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes so you can't harm yourself by accident
// ==UserScript== // @name Fallen London straightjacket // @namespace http://nekoinemo.net/ // @version 1.07 // @description Makes so you can't harm yourself by accident // @author NekoiNemo // @match http://fallenlondon.storynexus.com/* // @grant none // ==/UserScript== var branchBlacklist = [ "120916", "120919", "121205", "121210", "121248", "121250", "121261", // Remove "Closest to" (Devils, Docks, Criminals, Revolutionaries, Bohemians, The Great Game, Urchins) "63707", "63708", "63709", "63710", // Sell Cave of Nadir location (Revolutionaries, Devils, The Great Game, Urchins) "7687", "7690", "7693", "7696", "7699", "7702", // Attending to the Needs of a Singular Plant: "Get rid of it" "4939" // A Visit: "End your acquaintance" (Repentant Forger) ]; function makeChoicesSafe() { for (var i = 0; i < branchBlacklist.length; i++){ var branch = document.getElementById("branch" + branchBlacklist[i]); if (branch == null) continue; branch.getElementsByClassName("go")[0].style.display = "none"; } } setInterval(makeChoicesSafe, 100);