Disable thread preview on hover?

Status
Not open for further replies.

dwell

pics?
Oct 9, 1999
5,185
2
0
Is there any way to do this? I just switched to Chromium from FF and the hover is way spazzier now. Really annoying. Don't see an obvious way in settings.
 

dwell

pics?
Oct 9, 1999
5,185
2
0
Bleh. I just wrote a userscript to deal with it.

Code:
// ==UserScript==
// @name           AnandTech No Hover Synopsis
// @namespace      http://forums.anandtech.com/
// @description    AnandTech No Hover Synopsis
// @include        http://forums.anandtech.com/*
// ==/UserScript==

list = document.getElementsByClassName("alt1");

for(i = 0; i < list.length; i++)
{
    element = list[i];
    
    if(/^td_threadtitle_/.test(element.id))
        element.title = "";
}
 

dwell

pics?
Oct 9, 1999
5,185
2
0
Definitely should work with GM. I imported it as a Chrome extension though.
 
Status
Not open for further replies.