所以我有这个小书签,但我不喜欢 window 的位置。我怎么能把它放在左下角,而不是右上角?

So i have this bookmarklet but i dont like the position of the window. How could i make it in the bottom left corner, rather than the top right?

这是代码,我只是从网站上复制并粘贴了代码。这是一个代码,可以让我在一个网站上查看其他网站 window。但是我很笨,不知道怎么重新定位。

javascript:((function()%7Bvar a,b,c;c="https://www.bing.com/?safe=active&ssui=on",b=document.createElement("iframe"),b.setAttribute("src",c),b.setAttribute("id","rusic-modal"),b.setAttribute("style","position: fixed; z-index: 999999; width: 600px; height: 400px; right: 10px; top: 10px; border: 5px solid #8834af; overflow: hidden; background-color: #fff;"),a=document.getElementsByTagName("body")%5B0%5D,a.appendChild(b)%7D)).call(this)

你有 "top" 的地方,替换为 "bottom"。在你有 "right" 的地方,替换为 left

所以在线:

right: 10px; top: 10px; border: 5px; ...

left: 10px; bottom: 10px; border: 5px; ...