您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
The West Nightmode,pasted from hiroaki;best usage 30%
// ==UserScript== // @name TW NightMode // @version 0.01 // @license LGPLv3 // @description The West Nightmode,pasted from hiroaki;best usage 30% // @author Thomas_776 // @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://greasyfork.runtimutd.eu.org/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(55%)", "-webkit-filter": "brightness(55%)" }); })