您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Notifies you when you enter a "bad" word on the neoboards.
当前为
// ==UserScript== // @name Neopets bad word checker // @namespace neonazis // @include http://www.neopets.com/neoboards/topic.phtml* // @version 1 // @grant none // @require http://code.jquery.com/jquery-1.11.0.min.js // @description:en Notifies you when you enter a "bad" word on the neoboards. // @description Notifies you when you enter a "bad" word on the neoboards. // ==/UserScript== var naughtyWords = ["shit", "fuck", "cunt", "crack", "weed", "uncle", "nigger", "death", "kill", "cum", "rape", "semen", "anal", "screw", "meth", "snatch", "ass", "gay", "cock", "hole", "nuts", "meth", "ball", "stupid as", "bad as", "my space", "do it", "expression", "pen", "bad", "hit", "religion", "sex", "drunk", "makeup", "text", "shindig", "stick", "itching", "lesbian", "lezzie", "naked", "piss", "queer", "schlong", "suck", "tampon", "tit", "vagina", "idiot", "tag", "hooters", "google", "myspace", "tumblr", "twitter", "youtube"]; var currentNaughtyWords = []; $(document).ready(function(){ $("form[name='message_form'] > table > tbody > tr:nth-of-type(2)").after("<tr><td id='censorcheck' style='text-align: center; color: #FF0000;' colspan='2'></td></tr>"); $("#censorcheck").html(" "); }); function checkWords() { message = $("form[name='message_form'] textarea").val(); currentNaughtyWords.length = 0; for (i = 0; i < naughtyWords.length; i++) { if (message.toLowerCase().indexOf(naughtyWords[i]) >= 0) { currentNaughtyWords.push(naughtyWords[i]); } } if (currentNaughtyWords.length > 0) { $("#censorcheck").text("Naughty words found: " + currentNaughtyWords); } else { $("#censorcheck").html(" "); } } var scheduleCheck = window.setInterval(function() { checkWords() }, 1000);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址