您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Fix The West April Fool's joke (2018)
// ==UserScript== // @name TW Brightness Fix // @version 0.02 // @license LGPLv3 // @description Fix The West April Fool's joke (2018) // @author hiroaki // @match https://*.the-west.com.br/game.php* // @match https://*.the-west.com.pt/game.php* // @match https://*.the-west.cz/game.php* // @match https://*.the-west.de/game.php* // @match https://*.the-west.dk/game.php* // @match https://*.the-west.es/game.php* // @match https://*.the-west.fr/game.php* // @match https://*.the-west.gr/game.php* // @match https://*.the-west.hu/game.php* // @match https://*.the-west.it/game.php* // @match https://*.the-west.net/game.php* // @match https://*.the-west.nl/game.php* // @match https://*.the-west.org/game.php* // @match https://*.the-west.pl/game.php* // @match https://*.the-west.ro/game.php* // @match https://*.the-west.ru/game.php* // @match https://*.the-west.se/game.php* // @match https://*.the-west.sk/game.php* // @grant none // @namespace https://gf.qytechs.cn/users/3197 // @icon https://cdn.rawgit.com/TWFriends/scripts/master/lights.png // ==/UserScript== /*jshint esversion: 6 */ (function(fn) { var newScript = document.createElement('script'); newScript.setAttribute("type", "application/javascript"); newScript.textContent = '(' + fn + ')();'; (document.body || document.head || document.documentElement).appendChild(newScript); newScript.parentNode.removeChild(newScript); })(function() { $("#map").css({ "filter": "brightness(100%)", "-webkit-filter": "brightness(100%)" }); });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址