您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
cunt
当前为
- // ==UserScript==
- // @name Bypass EM Filter
- // @namespace http://devesu.com
- // @version 0.1
- // @description cunt
- // @author Eris
- // @match https://epicmafia.com/topic/*
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- var button = $('#create_post > p.submit.cfix > input');
- var msg = $('#create_msg');
- var mapping = {
- cunt:"c\u00adunt",
- dipshit:"d\u00adipshit",
- fag:"f\u00adag",
- faggot: "f\u00adaggot",
- fuck: "f\u00aduck",
- shit: "s\u00adhit",
- bitch: "b\u00aditch"
- };
- var re = new RegExp(Object.keys(mapping).join("|"),"gi");
- button.click(function (e) {
- msg.val(msg.val().replace(re, function(m) {
- return mapping[m];
- }));
- });
- })();