Bypass EM Filter

cunt

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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];
        }));
    }); 
    
})();