帮助更正书签以打开新的 Gmail 撰写窗口
我正在尝试配置一个小书签,以便在新窗口中从我的 Gmail 帐户撰写新邮件。问题是我总是在右侧看到一个滚动条。这是我现在正在使用的。
javascript:(function(){ window.open('https://mail.google.com/mail/?ui=2&view=cm&fs=1&tf=1&shva=1','Compose Gmail','status=no,directories=no,location=no,resizable=no,menubar=no,width=600,height=600,toolbar=no'); })();
如果您认为还有其他需要调整的地方,请告诉我。
I'm trying to configure a bookmarklet to compose a new message from my Gmail account in a new window. The problem is that I always get a scroll bar on the right hand side. Here's what I'm using right now.
javascript:(function(){ window.open('https://mail.google.com/mail/?ui=2&view=cm&fs=1&tf=1&shva=1','Compose Gmail','status=no,directories=no,location=no,resizable=no,menubar=no,width=600,height=600,toolbar=no'); })();
If there are any other things you think should be tweaked, please let me know.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要么将高度定义为更高,因为内容更高,要么不定义宽度/高度并让它自动调整大小。
您的另一个选择是打开一个脚本页面,将 GMail 加载到自身中并使用 JavaScript 调整窗口大小。
Either define the height to be taller since the content is taller or don't define the width/height and let it auto size.
Your other option is to open a script page that loads GMail into itself and resizes the window using javascript.