Skip to content

Instantly share code, notes, and snippets.

@furu
Last active March 17, 2016 15:50
Show Gist options
  • Save furu/43a3036fc9b7cd67a086 to your computer and use it in GitHub Desktop.
Save furu/43a3036fc9b7cd67a086 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Auto New Tweets Display
// @namespace https://tfrkd.org/
// @version 0.2
// @description 10秒毎に「○件の新着ツイートを表示」を自動的に押してくれるやつ
// @author furu
// @match https://twitter.com/
// @grant none
// ==/UserScript==
'use strict';
(function() {
setInterval(function() {
var n = document.getElementsByClassName('js-new-tweets-bar')[0];
if (n !== undefined) {
n.click();
}
}, 10000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment