почему этот код работает в консоли, а не в WebExtensions? - PullRequest
0 голосов
/ 12 сентября 2018

У меня странное поведение в консоли Firefox, этот код работает:

var mywindow = window.open('', 'PRINT', 'height=400,width=600');
mywindow.document.write('<html><head><title>' + document.title  + '</title>');
mywindow.document.write('</head><body >');
mywindow.document.write('<h1>' + "test" + '</h1>');
mywindow.document.write("<p>Ceci est un test</p>");
mywindow.document.write('</body></html>');

но не в моем Firefox WebExtensions. Почему?

1 Ответ

0 голосов
/ 04 октября 2018

сделано с помощью фонового скрипта и сообщений

...