I have a Greasemonkey script that is trying to access an HTML element that Adblock is disabling. Is it possible to create a workaround with the Greasemonkey script to prevent conflicts with the Adblock plugin?
I'm open to any ideas, however changing the script to avoid the Adblock element is not a solution at this time.
Additional Info
The addblock element I am trying to "enable" is a Table element from a google search result.
<table id="mbEnd" width="30%" style="margin-bottom: 1em;">
The Adblock filter hiding the element is:
google.com,google.com.au,google.co.uk,google.ca,google.se#table(id=mbEnd)(width=30%)
Update: Some are suggesting that I simply disable the adblock filter for the page I am working on. I also consider this a non-solution, since anyone using my script would have to perform the same action, and I can not expect all my users to manually modify their Adblock settings.