Created
July 31, 2018 20:38
-
-
Save fredyfx/c6267f1c3b7cddc0b310b99c4cc65fb3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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