您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Te avisa cuando algún amigo tuyo se va.
// ==UserScript== // @name Notificador de ausencias // @namespace Klatu // @version 1 // @description Te avisa cuando algún amigo tuyo se va. // @author Klatu // @match http://www.kongregate.com/games/*/* // @grant none // ==/UserScript== window.addEventListener('load', function(){ ChatRoom.prototype.userLeftAntesDeNotificadorDeAusencias=ChatRoom.prototype.userLeft; ChatRoom.prototype.userLeft=function(a){ this.userLeftAntesDeNotificadorDeAusencias(a); a = a.data.user; if(holodeck._chat_window.isFriend(a.username)) this._chat_dialogue.kongBotMessage('Che, '+a.username+' se las tomó.'); }; });