MegaUpload Filter?

Posting here is no longer possible, please use the forum of a filter list project, such as EasyList
Locked
xtranophilist
Posts: 10
Joined: Sun Aug 31, 2008 10:42 pm
Location: Ring-O
Contact:

MegaUpload Filter?

Post by xtranophilist »

How do i hide the text - Please enter here in the megaupload download page such as this - http://www.megaupload.com/?d=Q22R90U6

Any other filter suggestions for megaupload would be appreciated.
I am the game, you don't wanna play me.
I am control, no way you can change me.
I am heavy debt, no way you can pay me.
I am the pain and I know you can't take me.
Ares2
Posts: 1275
Joined: Fri Feb 15, 2008 12:47 pm

Post by Ares2 »

If you just use Megaupload for downloading, you can try the Greasemonkey extension with this userscript: http://userscripts.org/scripts/show/6764

Looks like this then (with autodownload after the 45 sec):

Image

Image
asdf

Post by asdf »

My question is, why do you want to?
xtranophilist
Posts: 10
Joined: Sun Aug 31, 2008 10:42 pm
Location: Ring-O
Contact:

Post by xtranophilist »

@ Ares2
Thanks for the userscript.
I remember trying it back some time ago but didnot work for me. I see it works for you. I tried it by disabling other addons - AdBlock Plus, ImgLikeOpera and FlashBlock. Didnt work it. The required captcha and input text box just goes behind and the unwanted stuff comes in front. See this screenshot:
Image

But I am not interested in this userscript.I dont think it can block downloading those pics, etc but rather it only hides the unwanted stuff. Does this make loading as faster as by blocking with AdBlock.

I have managed to do this with AdBlock Filters:
Image

This is making megaupload page load at its fastest.
But the text Please Enter Here is disturbing the captcha code and I want to remove the text.
I tried it with the Element Hiding Helper add-on. It was hid but input text box and other things moved too.

And here's the filter I use:
http://dipson.110mb.com/files/index.php ... Shared.txt

Thanks a lot.
I am the game, you don't wanna play me.
I am control, no way you can change me.
I am heavy debt, no way you can pay me.
I am the pain and I know you can't take me.
Ares2
Posts: 1275
Joined: Fri Feb 15, 2008 12:47 pm

Post by Ares2 »

xtranophilist wrote:But the text Please Enter Here is disturbing the captcha code and I want to remove the text.
I tried it with the Element Hiding Helper add-on. It was hid but input text box and other things moved too.
You will need some CSS code to get that right.

For Stylish or userContent.css:

Code: Select all

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("megaupload.com") {

   img[src^="/capgen."] {
      position: absolute !important;
      left: 40px !important;
   }

}
Alternatively you could also use it as a Greasemonkey script (I uploaded it on userscripts.org): http://userscripts.org/scripts/show/33380
xtranophilist
Posts: 10
Joined: Sun Aug 31, 2008 10:42 pm
Location: Ring-O
Contact:

Post by xtranophilist »

Thanks a lot. That one worked.
So, its not possible completely with AdBlockPlus.
I am the game, you don't wanna play me.
I am control, no way you can change me.
I am heavy debt, no way you can pay me.
I am the pain and I know you can't take me.
xtranophilist
Posts: 10
Joined: Sun Aug 31, 2008 10:42 pm
Location: Ring-O
Contact:

Post by xtranophilist »

Got the solution.
Shouldnt have blocked http://wwwstatic.megaupload.com/gui/spacer.gif
Blocking this from AdBlock makes the text Please enter Here to be written over the captcha[/i]
I am the game, you don't wanna play me.
I am control, no way you can change me.
I am heavy debt, no way you can pay me.
I am the pain and I know you can't take me.
Ares2
Posts: 1275
Joined: Fri Feb 15, 2008 12:47 pm

Post by Ares2 »

OK, this is definitely easier. :oops:
xtranophilist
Posts: 10
Joined: Sun Aug 31, 2008 10:42 pm
Location: Ring-O
Contact:

Post by xtranophilist »

Yeah, I ve used AdBlock Plus to block js scripts only.
ImgLikeOpera blocks all gif and other images.
Kept capgen.php in expception in imgLikeOpera for captcha code generation.

Didnot need to touch spacer.gif because blocking from ImglikeOpera doesnot loose the space of spacer.gif but blocking from AdBlock plus lost the space of spacer.gif and the text Please Enter Here came over the captcha image.

I wish AdblockPlus didnot loose the space I could do it without ImgLikeOpera.

Again used ImgLikeOpera to load the Free Download button .

Here are the filters:

For Adblock Plus:

Code: Select all

*.megaupload.com/*.js
Block all java scripts, and all flash objects and Advertisements are also blocked by blocking it.

For ImgLikeOpera:

Code: Select all

/megaupload.com/capgen.php*/
Doesnot block the captcha code.

Code: Select all

/*megaupload.com/gui/*_free*/
Doesnot block the free download button.
Could have done without it, if the user knows where the free download button is.

Thanks a lot again Ares2 for the help and time you gave.
Happy.
I am the game, you don't wanna play me.
I am control, no way you can change me.
I am heavy debt, no way you can pay me.
I am the pain and I know you can't take me.
xtranophilist
Posts: 10
Joined: Sun Aug 31, 2008 10:42 pm
Location: Ring-O
Contact:

Post by xtranophilist »

The Free Download button on the second page is not loaded as supposed to by the filter

Code: Select all

/*megaupload.com/gui/*_free*/
These are the images that should have been loaded but are not loaded:
http://wwwstatic.megaupload.com/gui/b_free_o.gif
http://wwwstatic.megaupload.com/gui/b_free.gif

Any Help please?
I am the game, you don't wanna play me.
I am control, no way you can change me.
I am heavy debt, no way you can pay me.
I am the pain and I know you can't take me.
asdf

Post by asdf »

I think you're better off with the extension "remove it permanently" and use an accurate xpath and match the xpath to *megaupload.com*
Locked