您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Set SSW to always use "Identical to my phrase" option
// ==UserScript== // @name Neopets SSW Always Use Identical Match // @namespace neopets.com // @version 1.0 // @description Set SSW to always use "Identical to my phrase" option // @author darknstormy // @match http://www.neopets.com/* // @match https://www.neopets.com/* // @match https://neopets.com/* // @grant none // @license MIT // ==/UserScript== var d = document var sswCriteria = d.getElementById("ssw-criteria") if (sswCriteria) { sswCriteria.value = 'exact' }