您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Replaces the chat with IRC
// ==UserScript== // @name DiamondHunt Chat IRC Replacer // @version 0.4 // @description Replaces the chat with IRC // @author Arunesh90 // @match http://www.diamondhunt.co/game.php // @grant none // @namespace https://greasyfork.org/users/14315 // ==/UserScript== var chatNode = document.getElementById("chat-box-area"); while (chatNode.firstChild) { chatNode.removeChild(chatNode.firstChild); } $(document).ready(function() { $("#chat-box-area").html("<iframe src='https://kiwiirc.com/client/irc.kiwiirc.com/?nick=Diamondhunt|?#Diamondhunt' style='border:0; width:100%; height:450px;'></iframe>"); });