Twitch, Simplifiy Chat

Simplifiy for chat

// ==UserScript==
// @name         Twitch, Simplifiy Chat
// @namespace    http://tampermonkey.net/
// @version      0.1.3
// @description  Simplifiy for chat
// @author       You
// @match        https://www.twitch.tv/*
// @icon         https://www.google.com/s2/favicons?domain=tampermonkey.net
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function() {
    'use strict';
    var style = document.createElement("style");
    style.innerHTML = `
.vod-message,
.chat-line__message {
    z-index: 1;
    position: relative;
}
/* reply */
.chat-line__message:has(.message-event-pill) {
    display: none !important;
}
/* : */
.chat-line__message-container [aria-hidden=true] {
    display: none;
}
.vod-message__header {
    display: none !important;
}
.chat-line__username,
.video-chat__message-author {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 8px;
    z-index: 0;
    opacity: 0.6;
}
.chat-author__display-name + .chat-author__intl-login {
    display: none
}
[data-test-selector="chat-message-separator"] {
    display: none;
}
.video-chat__message > span:first-child {
    display: none;
}
.chat-badge,
[data-a-target="chat-badge"] {
    display: none;
}
/* reply button */
.chat-line__reply-icon {
    display: none !important;
}
/* emote details */
.chat-line__message--emote-button,
.chat-line__message--emote-button img,
[data-test-selector="emote-button"] {
    pointer-events: none;
}
    `;
    document.body.appendChild(style);
})();

QingJ © 2025

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