/*
* @title Twiload
* @description autoload new tweets on twitter.com
* @include https://twitter.com/*
* @license MIT License https://opensource.org/licenses/MIT
* @javascript_url
*/
(() => {
'use strict';
const load = () => {
const expander = document.body.querySelector('.new-tweets-bar');
if (!expander) return;
expander.click();
};
load();
const INTERVAL = 5000;
setInterval(load, INTERVAL);
})();