Usando Chrome en Windows, usé el siguiente javascript/bookmarklet para abrir una ventana emergente con el tamaño dado:
javascript: try { s = window.getSelection(); if (!s || s == '') { for (i = 0; i < frames.length; i++) { s = frames[i].window.getSelection(); if (s && s != '') break; } } } catch (e) {} if (!s || s == '') void(s = prompt('Please select a word before you click on this link (or type your text here:)', '')); if (s && s != '') { dw = window.open('http://pocket.dict.cc/?bm=1&s=' + encodeURI(s), 'dict', 'width=320,height=480,resizable=yes,scrollbars=yes'); dw.focus(); }Intentando hacer lo mismo en Chrome en MacOS en lugar de abrir la nueva pestaña emergente.
¿Hay alguna forma de abrir una ventana emergente con el tamaño dado en la configuración de la ventana emergente ( width=320, height=480 )?