twitter conversation opener

expands conversations?

질문, 리뷰하거나, 이 스크립트를 신고하세요.
개발자
William Hart
일일 설치수
0
총 설치수
90
평점
0 0 0
버전
0.2
생성
2015-07-12
갱신
2015-07-13
라이선스
없음
동작 사이트
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..