您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Make the Flash-Free Qasalan Expellibox messages readable
// ==UserScript== // @name Flash-Free Qasalan Expellibox Messages // @namespace https://greasyfork.org/en/scripts/479785 // @version 1.1 // @description Make the Flash-Free Qasalan Expellibox messages readable // @author Zylysh // @match *ncmall.neopets.com/games/giveaway/process_giveaway.phtml // @icon https://www.neopets.com/favicon.ico // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; document.body.innerHTML = document.body.innerHTML.split('msg=').pop() .replace(/\+/g, " ") .replace(/%2C/g, ",") .replace(/%3F/g, "?") .replace(/%21/g, "!") .replace(/%27/g, "'") .replace(/%2A/g, "*") .replace(/%3Cbr%3E/g, "<br>"); })();