The Un-Official Proxomitron Forum
MySpace revisited - Picture kills - Printable Version

+- The Un-Official Proxomitron Forum (https://www.prxbx.com/forums)
+-- Forum: Proxomitron Filters (/forumdisplay.php?fid=38)
+--- Forum: Filter Help/Request (/forumdisplay.php?fid=31)
+--- Thread: MySpace revisited - Picture kills (/showthread.php?tid=739)



MySpace revisited - Picture kills - AlienIntelligence - Feb. 19, 2006 02:10 AM

Well, the filters I was provided are working
great and have greatly enhanced my browsing
experience... [thanks]

So I'm gonna get greedy now =)

Is it possible to remove the member's pictures
from all the pages? Not only the person who's
profile you're visiting's picture but their 'friends'
pictures and all the pictures in the 'comment'
region?

Taking my profile as an example,
http://www.myspace.com/ironjuggernaut

The pictures look like they are separately maskable,
here are a few,
http://myspace-415.vo.llnwd.net/00111/51/46/111316415_s.jpg
http://myspace-223.vo.llnwd.net/00465/32/22/465252223_s.jpg
http://myspace-653.vo.llnwd.net/00040/35/61/40261653_m.gif
(Do note that they can be either jpg or gif)

etc, with the same type pathnames in each
section. If it takes out other images, that's
fine too.

I'm looking for ultimate speed in loading and
obscurity now =)

thanks again,
-Marc


- Kye-U - Feb. 19, 2006 03:25 AM

Done. It wasn't too hard Smile!

Doesn't take out anything else I think.

To increase loading speed, you'd probably want to remove background images and/or hotlinked images (non-myspace images).

Remove the old filter and import this baby in Wink

Code:
[Patterns]
Name = "MySpace Cleaner"
Active = TRUE
URL = "[^/]++myspace.com/"
Limit = 1024
Match = "function oas_ad\(\)$SET(1=function Shonenscape())"
        "|$NEST(<table width="800" border="0" align="center" cellspacing="0" cellpadding="0">,</table>)"
        "|$NEST(<script*>,*oas_ad*,</script>)"
        "|$NEST(<iframe*revenueScience*>,</iframe>)"
        "|$NEST(<div id="advertisement">,</div>)"
        "|$NEST(<embed*>,</embed>)"
        "|$NEST(<object*>,</object>)"
        "|$NEST(<div*>,*mygen*,</div>)"
        "|<a href="http://r4wr.com/friends" class="fs">[/url]"
        "|<a href=\"javascript:makeHome\(\);\" STYLE="behavior:url\(\'#default#homePage\'\);\" ID=\"myHomePage\">Make Myspace my Home Page[/url]<br />"
        "|<bgsound$SET(1=<Shonenscape)"
        "|<textarea name="f_comments" cols="46" rows="5">$SET(1=<textarea name="f_comments" cols="60" rows="80">)"
        "|<img src="http://x.myspace.com/images/advertisement_up.gif" width="120" height="10" border="0" alt="Advertise Here!" title="Advertise Here!">"
        "|<tr> <td bgcolor="FFFFFF" align="center" valign="top" width="25%"><a href="http://profile.myspace.com/index.cfm\?fuseaction=user.viewprofile\&friendid=[0-9]+" id="*_friendImageLink"><img src="http://myspace-[0-9]+.vo.llnwd.net/[0-9]+/[0-9]+/[0-9]+/[0-9]+_(s|m).(jp(e|)g|gif)">[/url]<br> <DIV style="width:80px;height:20px;" ID="UserDataNode[0-9]+" CLASS="DataPoint=OnlineNow;UserID=[0-9]+;"></div> </td> </tr>"
        "|<br> <br> <a href="http://profile.myspace.com/index.cfm\?fuseaction=user.viewprofile\&friendid=[0-9]+"> <img src="http://myspace-[0-9]+.vo.llnwd.net/[0-9]+/[0-9]+/[0-9]+/[0-9]+_(s|m).(jp(e|)g|gif)" border="0">[/url]<br> <DIV style="width:80px;height:20px;" ID="UserDataNode[0-9]+" CLASS="DataPoint=OnlineNow;UserID=[0-9]+;"></div> <br> <br>"
Replace = "\1"

EDIT: Whoops, misread your post. I thought you wanted to remove all profile pictures EXCEPT yours. Here is a filter that removes all profile pictures INCLUDING yours:

Code:
[Patterns]
Name = "MySpace Cleaner"
Active = TRUE
URL = "[^/]++myspace.com/"
Limit = 1024
Match = "function oas_ad\(\)$SET(1=function Shonenscape())"
        "|$NEST(<table width="800" border="0" align="center" cellspacing="0" cellpadding="0">,</table>)"
        "|$NEST(<script*>,*oas_ad*,</script>)"
        "|$NEST(<iframe*revenueScience*>,</iframe>)"
        "|$NEST(<div id="advertisement">,</div>)"
        "|$NEST(<embed*>,</embed>)"
        "|$NEST(<object*>,</object>)"
        "|$NEST(<div*>,*mygen*,</div>)"
        "|<a href="http://r4wr.com/friends" class="fs">[/url]"
        "|<a href=\"javascript:makeHome\(\);\" STYLE="behavior:url\(\'#default#homePage\'\);\" ID=\"myHomePage\">Make Myspace my Home Page[/url]<br />"
        "|<bgsound$SET(1=<Shonenscape)"
        "|<textarea name="f_comments" cols="46" rows="5">$SET(1=<textarea name="f_comments" cols="60" rows="80">)"
        "|<img src="http://x.myspace.com/images/advertisement_up.gif" width="120" height="10" border="0" alt="Advertise Here!" title="Advertise Here!">"
        "|<img src="http://myspace-[0-9]+.vo.llnwd.net/[0-9]+/[0-9]+/[0-9]+/[0-9]+_(s|m).(jp(e|)g|gif)"( border="0"|)>"
Replace = "\1"



- AlienIntelligence - Feb. 19, 2006 03:39 AM

Cool, and I'd just split that up, if I wanted
a separate filter I can turn on and off?

-Marc


- Kye-U - Feb. 19, 2006 03:49 AM

Sure, if you wanted to Smile!


- AlienIntelligence - Feb. 19, 2006 03:57 AM

K, I hope I don't break it.

=)