Вот как вы можете закрыть iframe с помощью кнопки «Закрыть окно».
Сначала укажите свой идентификатор iframe, добавив "iFrame.id = 'foo';" в конец вашего скрипта букмарклета:
javascript:(function(){var iFrame=document.createElement('IFRAME');iFrame.src='test2.html';iFrame.style.cssText='display:block;position:absolute;top:5%;left:60%;width:40%;height:51%;overflow:hidden;';document.body.insertBefore(iFrame,document.body.firstChild);iFrame.id='foo';})();
Затем в источнике вашего iframe измените
<input type="button" onclick=window.close() value="Close Window"/>
до
<input type="button" onclick="parent.document.body.removeChild(parent.document.getElementById('foo'));" value="Close Window"/>