Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

With Greasemonkey, I'm looking to block images and scripts from being downloaded.

From an existing post I learnt that it is possible to use the document-start directive to jump in before scripts execute.

Is it possible for me to use window.addEventListener on a specific event that allows me to find the src = xxx.js and xxx.jpg tags and either remove these src= tags before downloading, or to block the download?

Note: Here is a list of events that Mozilla supports.

AMENDED: I would like to replace the blocked downloads with my own scripts or images.

share|improve this question
1  
Use the answer you linked to block the desired xxx.js files. You can use Mutation Observers to quickly kill image srcs, but the file might start downloading in the background anyway (need to test this). ... The smart thing to do is to use Adblock Plus, and/or maybe RequestPolicy to block select js or jpg files. Adblock plus will be faster as well. – Brock Adams Oct 28 '12 at 4:21
Thx ... I still need to investigate these two paths, but I should say that I would like to replace the blocked downloads with my own scripts or images. (Per AMENDED text.) – Stephan Warren Oct 28 '12 at 9:26
Can you run a Greasemonkey script before the page's html is executed? if so, maybe it's possible to remove the desired html elements – alfred Oct 28 '12 at 9:56
Yes - You can use the script at "document-start". This will allow you to add the event listeners (and do some other activities) before you get the page. At this time, a lot of the HTML is missing. My tests sow that only the <head> elements are filled - I ain't got no <body> for me. – Stephan Warren Oct 28 '12 at 18:48
Greasemonkey can't do this, because the page script may earlier than GM script execute. You remove the src attribute later doesn't help. I think what your want is modify the http response content. – muzuiget Apr 19 at 18:29

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.