Better Chat

12/01/2025, 22:14:12

Version vom 12.01.2025. Aktuellste Version

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

    var div = document.getElementById("comms");
    div.innerHTML = '<iframe class="msg-stream-holder" role="log" aria-live="polite" scrolling="no" src="https://s.ex.hn/chat"></iframe>';

})();