Hi
Is it possible to simulate a click on an element inside an iframe with a cross domain src?
i know it's not possible with "normal" javascript, but a chrome extension should have access to everything, right?
Using jquery i would normally do: $('iframe a#id').click(), which works if the iframe src is on same domain, but not if the iframe src is on another domain.
So my idea would be to somehow do it from the background; get the tab source somehow?