Make sure your @includes are right, make sure GM is enabled, make sure the
script is alert('running');

It looks like you might be attaching the event wrong.... also, GM runs by
default at DOMContentLoaded so you should be able to expect that all
elements exist, no listener required.  You can alert(element);s to make
sure they exist.  If they load later you may have to addEventListener for
DOMNodeInserted and/or run your script from a
setTimeout(function(){/*code*/},250) after that to make sure everything
exists as nodes (as necessary).  It may not always be elegant but there is
pretty much always a way to get it working.

-- 
You received this message because you are subscribed to the Google Groups 
"greasemonkey-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/greasemonkey-users?hl=en.

Reply via email to