twitter conversation opener

expands conversations?

目前為 2015-07-12 提交的版本,檢視 最新版本

作者
William Hart
評價
0 0 0
版本
0.1
建立日期
2015-07-12
更新日期
2015-07-12
尺寸
761 位元組
授權條款
未知
腳本執行於
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 you 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..

To Do

-Add an easy remove timer button
-add session remember timer remove
-add a toggle switch for time (is much the same to the first one)
-remove timer altogether and have it update after twitter has loaded new information