NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Chaturbate Moar Like Betterbate // @namespace insufferable // @version 0.1 // @author insufferable // @match https://chaturbate.com/*/ // @updateURL https://openuserjs.org/meta/insufferable/Chaturbate_Moar_Like_Betterbate.meta.js // @require https://cdn.jsdelivr.net/lodash/4.17.4/lodash.min.js // ==/UserScript== var bar = $('.info-user > .headline'); bar.on('click', ':not(.buttons)', function(evt){ $('#defchat .bio').toggle(200); }); $(window).load(function(evt){ // console.log('load!'); var t = setInterval(function(){ var list = $('.chat-list:visible'); var buttons = list.siblings('.buttons'); // console.log('chat?', !!list[0]); if (!list[0] || !buttons[0]) return; buttons[0].scrollIntoView(); clearInterval(t); }, 500); }); /* $('body, #chat_input').keydown(function(evt){ if (evt.which == 33 || evt.which == 34) $('.chat-list').focus(); }); */