The Un-Official Proxomitron Forum
Google Fade Problem - Printable Version

+- The Un-Official Proxomitron Forum (https://www.prxbx.com/forums)
+-- Forum: Proxomitron Filters (/forumdisplay.php?fid=38)
+--- Forum: Website Customization (/forumdisplay.php?fid=9)
+--- Thread: Google Fade Problem (/showthread.php?tid=1537)



Google Fade Problem - Graycode - Dec. 03, 2009 07:53 PM

Apparently Google is rolling out new code that fades in portions of their page. Unfortunately it doesn't always work on several of my browsers, and ends up hiding the links at the top and bottom of the page. Lately this has been happening about half of the time.

To resolve this I am changing: opacity:0 into opacity:1 in Google's html.

So now whether Google pushes a working fade script or not, the previously hidden sections are always visible. Sorry I'm not able to provide a Proxo filter.

See also: http://www.dslreports.com/forum/r23431568-Is-it-Google-or-Proxomitron


RE: Google Fade Problem - Kye-U - Dec. 03, 2009 10:43 PM

Thanks!

Try this out:

Code:
[Patterns]
Name = "Google Search: Remove Fade In"
Active = TRUE
Multi = TRUE
URL = "$TYPE(htm)www.google.(*/)+{1}(^?)"
Limit = 9
Match = "opacity:0(;|)"
        "|var g=1$SET(1=var g=0)"
Replace = "\1"

I've posted this over at BBR as well.


RE: Google Fade Problem - JJoe - Dec. 04, 2009 04:55 AM

I'm seeing it now at
www.google.com/
www.google.com/webhp?hl=en
www.google.com/webhp?num=10
, there may be more.

Posted filter does remove feature? at www.google.com/.
I think URL Match needs to be modified for others.

And now I'm seeing the old code.

'Fade in' seemed to be broken by the "Stop JavaScript Timers" filter.

'Fade in' may need a mouse click and movement when I use Opera 10.10.

(Dec. 03, 2009 10:43 PM)Kye-U Wrote:  I've posted this over at BBR as well.

Filters posted in a code box at dslreports may copy and paste like

Code:
1. [Patterns]  
   2. Name = "Google Search: Remove Fade In"  
   3. Active = TRUE  
   4. Multi = TRUE  
   5. URL = "$TYPE(htm)www.google.(*/)+{1}(^?)"  
   6. Limit = 9  
   7. Match = "opacity:0(;|)"  
   8.         "|var g=1$SET(1=var g=0)"  
   9. Replace = "\1"

The line numbers need to be removed before the filter can be copied and imported.