The Un-Official Proxomitron Forum
remove those scoial media links!!!! - 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: remove those scoial media links!!!! (/showthread.php?tid=1623)



remove those scoial media links!!!! - bugger - Jun. 07, 2010 12:02 AM

Can someone please make a filter that remove those buttons for facebook, google buzz, digg it, reddit, twitter, stumble upon.


RE: remove those scoial media links!!!! - JJoe - Jun. 10, 2010 02:15 AM

Narrow it down a little? Wink

I have a handful of sites that I visit.


RE: remove those scoial media links!!!! - Oddysey - Jun. 11, 2010 10:15 PM

JJoe;

Actually, many sites have simply "grabbed" the standardized code offered by each of the offending sites, and placed it within their templates. Should make our job a bit easier than if every site used home-brew coding.....

~!~!~!~!~
bugger;

As I just noted above, you can find each of the offenders by looking for the standard coding items. One thing I found is that they nearly always use an image that is called directly from the offender's site. This is in addition to, or it might even be instead of, text. Just be aware that those images could be saved in any number of formats - .png, .gif, .jpg, .ico, the list can get pretty extensive.

I'd look for links that opened with <a..... and before the link was closed, there was an image from the offender's site. Killing that link (or plural - killing those links) should give you peace of mind. Wink

HTH



Oddysey


RE: remove those scoial media links!!!! - bugger - Jun. 27, 2010 11:52 PM

i don't really mind those icons...i talking about this big waste of my screen space by the big 3, namely facebook, digg and twitter!

check out the image..http://i47.tinypic.com/13yhx54.png


RE: remove those scoial media links!!!! - ProxRocks - Jun. 28, 2010 08:17 AM

in GreenBrowser, i use two plugins that put a blue square around all div's with class names -
Code:
<script language="JavaScript">

var t=document.getElementsByTagName('div');for(i=0;i<t.length;i++){void(t[i].style.padding='5px;');b=t[i].className;h=t[i].innerHTML;void(t[i].innerHTML='<p style=\'color:blue;font-weight:bold;\'>class='+b+'</p>'+h);void(t[i].style.border='2px solid blue');}

</script>
and a red box around all div's with id names -
Code:
<script language="JavaScript">

var t=document.getElementsByTagName('div');for(i=0;i<t.length;i++){void(t[i].style.padding='5px;');b=t[i].id;h=t[i].innerHTML;void(t[i].innerHTML='<p style=\'color:red;font-weight:bold;\'>id='+b+'</p>'+h);void(t[i].style.border='2px solid red');}

</script>

then add those names to sidki's "sAdKey" keyword in Exc-U/IncEx-U...

for the image you posted, it would not surprise me that ONE class/id will get rid of that entire right-side eyesore...


RE: remove those scoial media links!!!! - JJoe - Jun. 28, 2010 01:01 PM

(Jun. 27, 2010 11:52 PM)bugger Wrote:  i talking about this big waste of my screen space by the big 3

For sidki's set try adding

Code:
wildammo.com/     $SET(sAdKey=.text-32.text-33.text-34.text-35.)

to Exceptions-U

For other sets try adding

Code:
[Patterns]
Name = "wildammo.com/ remove social widgets 10.06.28"
Active = TRUE
URL = "$TYPE(htm)wildammo.com/"
Bounds = "<li\s*</li>"
Limit = 2560
Match = "<li id="text-3[1-5]" class="widget widget_text"*"

to the filters.

HTH


RE: remove those scoial media links!!!! - bugger - Jul. 04, 2010 02:57 AM

I enable block all third party script header for now. We'll see how that plays now, so far so good!


RE: remove those scoial media links!!!! - bugger - Jul. 20, 2010 10:32 PM

Reporting back on setting block all third party script. Breaks alot of functions on webpages Sad

how can i add facebook.com, digg.com, twitter.com to the list of block specific third party scripts?


RE: remove those scoial media links!!!! - JJoe - Jul. 21, 2010 01:29 AM

(Jul. 20, 2010 10:32 PM)bugger Wrote:  how can i add facebook.com, digg.com, twitter.com to the list of block specific third party scripts?

Try adding something like

Code:
#bugger's additions for social media scripts
[^/]++.digg.com/$TST(keyword=*.i_script:12.*)
[^/]++.facebook.com/$TST(keyword=*.i_script:12.*)
[^/]++.twitter.com/$TST(keyword=*.i_script:12.*)
[^/]++.twimg.com/$TST(keyword=*.i_script:12.*)

to AdHosts-J

HTH


RE: remove those scoial media links!!!! - bugger - Nov. 11, 2010 03:32 AM

Just updated the the Oct 2010 filterset and the above addition to adhost-j no longer works!

I just want to complete block digg.com, facebook.com and twitter.com completely if its a third party script!

e.g http://www.zdnet.com.au/54-fibre-and-counting-339307155.htm

annoying elements: http://i52.tinypic.com/34oyhjd.png


RE: remove those scoial media links!!!! - JJoe - Nov. 12, 2010 12:50 AM

Code:
#bugger's additions for social media scripts
[^/]++.digg.com/$TST(keyword=*.i_script:12.*)
[^/]++.facebook.com/$TST(keyword=*.i_script:12.*)
[^/]++.facebook.net/$TST(keyword=*.i_script:12.*)
[^/]++.twitter.com/$TST(keyword=*.i_script:12.*)
[^/]++.twimg.com/$TST(keyword=*.i_script:12.*)

to AdHosts-J

Code:
www.zdnet.com.au/  $SET(sAdKey=$GET(sAdKey)live-zdnet.)

to Exceptions-U

HTH