I’d really like to figure out how to either run a chunk of code or extension or something to block anything on a page that meets a certain criteria (in this case “Tebow”).
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
By using google chrome extensions you have an access to DOM of the page, but you can’t prevent some javascript code to be executed on the page while DOM is loading. This is because browser run inline javascripts once it added to the DOM. If your script start running, let’s say on window.onload, then you have a chance to put your blocking logic before other scripts and remove them from the DOM, so they’ll not be executed.
See more details about google chrome extensions here: http://code.google.com/chrome/extensions/content_scripts.html