Skip to content

Instantly share code, notes, and snippets.

@fredyfx
Created July 31, 2018 20:38
Show Gist options
  • Save fredyfx/c6267f1c3b7cddc0b310b99c4cc65fb3 to your computer and use it in GitHub Desktop.
Save fredyfx/c6267f1c3b7cddc0b310b99c4cc65fb3 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name SE Chat
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Moving Feed new items to the bottom right corner
// @author You
// @match https://chat.stackexchange.com/rooms/30872/stack-overflow-en-espanol
// @grant none
// ==/UserScript==
(function() {
'use strict';
let feed=document.getElementById('feed-ticker');
if (feed) {
feed.style.position='fixed';
feed.style.right='0';
feed.style.bottom='90px';
feed.style.top='unset';
feed.style.left='unset';
feed.style.width='30%';
console.log("Feed movido");
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment