Better Chat

12/01/2025, 22:14:12

// ==UserScript==
// @name        Better Chat
// @namespace   Violentmonkey Scripts
// @match       https://iwannabethestream.com/*
// @grant       none
// @license MIT
// @version     2.0
// @author      -
// @description 12/01/2025, 22:14:12
// ==/UserScript==
(function() {
  'use strict';

    var div = document.getElementById("comms");
    div.innerHTML ='';
    var div = document.getElementById("page");
    var temp = div.innerHTML;
    div.innerHTML = '<aside id="comms"  style="display: flex;	flex-direction: column; position: absolute; left: 0; top: 0; width: 24em; z-index: 10;" class="integrated"><iframe class="msg-stream-holder" role="log" aria-live="polite" scrolling="no" src="https://s.ex.hn/chat/"></iframe> <iframe id="twitchchat" src="https://www.twitch.tv/embed/cerulean86/chat?darkpopout&amp;parent=s.ex.hn" scrolling="no" height="100%" width="100%" frameborder="0" class="chat"></iframe></aside>' + temp;
})();