morteng / Auto Live feed update

// ==UserScript==
// @name			Auto Live feed update
// @namespace		http://sidelinien.dk
// @version			1
// @description		Auto opdaterer Live feed på Twitter
// @copyright		2014+, rmjdk
// @include         https://twitter.com/*
// @match           https://twitter.com/*
// @grant none
// @grant none
//
// ==/UserScript==

function autoUpdateLiveFeed() {
	$(".new-tweets-bar").trigger("click");

	window.setTimeout(autoUpdateLiveFeed, 1000);
}

autoUpdateLiveFeed();