您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a 'None' option to gender, select it and select 'change profile' to null out gender.
当前为
// ==UserScript== // @name Remove Gender // @namespace https://epicmafia.com/user/478384#/ // @version 0.1 // @description Adds a 'None' option to gender, select it and select 'change profile' to null out gender. // @author joshua // @match https://epicmafia.com/user/edit // @grant unsafeWindow // ==/UserScript== var $ = unsafeWindow.jQuery; $('input[name^="gender"][value^="2"]').after('<label class="inner">None</label><input class="profilegender" name="gender" type="radio" value="11">');