En tapermonkey funciona perfecto... pero necesito hacerlo en greasemonkey.
No consigo acceder al segundo iframe
Código:
var button = document.createElement('button');
button.innerHTML = 'Do Something';
var body = document.getElementsByTagName('body')[0];
body.appendChild(button);
button.addEventListener ('click', function() {
contentWindow
var iframe = document.getElementsByTagName('iframe')[0];
var iframe2 = iframe.contentWindow.getElementsByTagName('iframe')[0];
alert(iframe2);
});
Me podrias poner un ejemplo de acceso a un embed?