Last active
March 17, 2016 15:50
-
-
Save furu/43a3036fc9b7cd67a086 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 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