Lenny Face

Just type lenny on fb chat.

// ==UserScript== 
// @name Lenny Face
// @author david0ff
// @version 1.0.1
// @description Just type lenny on fb chat.
// @include https://www.facebook.com/*
// @namespace https://gf.qytechs.cn/users/21339
// ==/UserScript==

var f5 = setInterval(Lenny,100);

function Lenny(){
    var t = document.getElementsByClassName("uiTextareaAutogrow");
        for(i=0; i<t.length; i++){
            document.getElementsByClassName("uiTextareaAutogrow")[i].onkeyup = function() {
                var rep = this.value.replace("lenny", "( ͡° ͜ʖ ͡°)");
                this.value = rep;
            }
        }
}

Lenny();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址