您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
chat message!
// ==UserScript== // @name chat-logs // @namespace http://tampermonkey.net/ // @version 0.1.0 // @author Nei // @description chat message! // @match https://catwar.su/cw3/ // @license MIT // ==/UserScript== (function() { 'use strict'; var target = document.querySelector("#chat_msg"); var infoPanel = document.querySelector("body"); var InfoItem = document.createElement("div"); InfoItem.textContent = "Произошло обновление в чате"; InfoItem.style.display = "none"; InfoItem.style.top = "0"; InfoItem.style.height = "30px"; InfoItem.style.background = "white"; InfoItem.style.position = "sticky"; InfoItem.style.fontSize = "16px"; InfoItem.style.textAlign = "center"; InfoItem.style.zIndex = "9"; InfoItem.id = "chat-update"; // infoPanel.appendChild(InfoItem); infoPanel.insertBefore(InfoItem, infoPanel.firstChild); const config = { childList: true, }; const callback = function (mutationsList, observer) { for (let mutation of mutationsList) { if (mutation.type === "childList") { console.log("A child node has been added or removed."); document.querySelector("#chat-update").style.display = "block"; setTimeout(() => document.querySelector("#chat-update").style.display = "none", 3000); } } }; // Создаём экземпляр наблюдателя с указанной функцией колбэка const observer = new MutationObserver(callback); // Начинаем наблюдение за настроенными изменениями целевого элемента observer.observe(target, config); })();