我正在使用“Gmail This!” bookmarklet通过Gmail使用迷你撰写窗口发送URL和所选文本。目前,我仍然需要输入收件人,然后点击发送。
我想知道是否可以在Gmail可以使用的代码中传递收件人,所以我只需要点击发送按钮
以下是我正在使用的代码:
javascript:(function(){var%20w=window,d=document,gS='getSelection';var%20s=(''+(w[gS]?w[gS]():d[gS]?d[gS]():d.selection.createRange().text)).replace(/(^\s+|\s+$)/g,'');m='http://mail.google.com/mail/?view=cm&fs=1&tf=1&to=&su='+encodeURIComponent(document.title)+'&body='+encodeURIComponent(document.location+'\n\n'+s);w=window.open(m,'addwindow','status=no,toolbar=no,width=575,height=545,resizable=yes');setTimeout(function(){w.focus();},%20250);})();
代码来自此页An Improved "Gmail This" Bookmarket
我只需要将链接发送给自己
答案 0 :(得分:0)
只需在书签中的“& to =”之后添加您的电子邮件地址:
javascript:(function(){var%20w=window,d=document,gS='getSelection';var%20s=(''+(w[gS]?w[gS]():d[gS]?d[gS]():d.selection.createRange().text)).replace(/(^\s+|\s+$)/g,'');m='http://mail.google.com/mail/?view=cm&fs=1&tf=1&to=you@email.com&su='+encodeURIComponent(document.title)+'&body='+encodeURIComponent(document.location+'\n\n'+s);w=window.open(m,'addwindow','status=no,toolbar=no,width=575,height=545,resizable=yes');setTimeout(function(){w.focus();},%20250);})();