Greasy Fork is available in English.

twitter conversation opener

expands conversations?

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
作者
William Hart
1日のインストール数
0
累計インストール数
91
評価
0 0 0
バージョン
0.2
作成日
2015/07/12
更新日
2015/07/13
大きさ
586バイト
ライセンス
不明
対象サイト
if( document.readyState == "complete" ) {
    conversationInterval = setInterval(viewConversations(), 30000);//30 second refresh rate
}

This sets a 30 second timer if, so it will open new conversations over time, say twitter updates while you're away, or whatever..

1 second is 1000, you can edit to any time, or use

if( document.readyState == "complete" ) {
    viewConversations();
}

but it might not work after scrolling down and having fresh information added.

You can press F12 to open developer tools, and go to console and type enter clearInterval(conversationInterval); and it will clear it.

Presently no form of session, so it will start on every page when you navigate around, and it will reset the timer if it has been cleared..