Skip to content

Instantly share code, notes, and snippets.

@Ge-lx
Created April 15, 2020 12:18
Show Gist options
  • Save Ge-lx/9df068bb5022da6a5396c1f3764b4e3f to your computer and use it in GitHub Desktop.
Save Ge-lx/9df068bb5022da6a5396c1f3764b4e3f to your computer and use it in GitHub Desktop.
Paste this into the browser console (F12) to move the chat to a better position
(function (chatStyle) {
var sidebar = document.querySelector('#containerSidebar');
sidebar.style.position = 'absolute';
sidebar.style.bottom = 0;
sidebar.style.width = '100%';
sidebar.style.height = '300px';
var adsContainer = document.querySelector('#containerFreespace');
adsContainer.style.display = 'none';
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment