草 稿

9个Google书签小工具强化Google使用服务体系

使用下面介绍的9个书签小工具,先添加到网页书签栏中重命名,后续使用时一键点击即可,非常方便。书签小工具的添加方法有些特殊,在“书签管理器”中点击“添加网页”。如有不清楚的地方,欢迎添加微信号:IloveGTD进行咨询!

  1. Google Maps书签小工具

    点击Google Maps书签小工具, 会弹出一个简单提示框,输入查询地址后会在新的标签页显示地图,然后就可以使用更完整功能地图了,包括乘车工具和路线、查看附近区域和地图导航等。

    Google Maps书签小工具代码:

    javascript:d=””+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);d=d.replace(/\r\n|\r|\n/g,” ,”);if(!d)d=prompt(“Enter the address:”, “”);if(d!=null)location=”http://maps.google.com?q=”+escape(d).replace(/ /g,”+”);void 0

  2. Google Definitions书签小工具

    Google Definitions书签小工具可以快速查询单词释义,英英释义可以更好融入语境和文化学习中。对于网页中不认识的单词划出选中后,点击该书签工具就会在新的标签页中显示该生词的发音、英文释义和同义词。

    Google Definitions书签小工具代码:

    javascript:d=””+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);d=d.replace(/\r\n|\r|\n/g,” ,”);if(!d)d=prompt(“Enter the words:”, “”);if(d!=null)location=”http://www.google.com/search?q=define:”+escape(d).replace(/ /g,”+”);void(0);

  3. Google Bookmark书签小工具

    点击Google Bookmark书签小工具,可以快速添加并整理网页书签站点,前提是需登陆Google账号。对需要保存的网站,点击该书签工具后会在弹出框中,看到已经预设好的网站详细信息,包括名称、地址、标签和备注说明,可以对上述参数进行修改,我一般会加上标签方便后期网站查找。

    Google Bookmark书签小工具代码:

    javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open(“http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk=”+c(b.location)+”&title=”+c(b.title),”bkmk_popup”,”left=”+((a.screenX||a.screenLeft)+10)+”,top=”+((a.screenY||a.screenTop)+10)+”,height=420px,width=550px,resizable=1,alwaysRaised=1″);a.setTimeout(function(){d.focus()},300)})();

  4. Google Calendar Add Event书签小工具

    点击Google Calendar书签小工具,可以快速添加日程安排到Google日历中。只要点击该工具,会让你输入日程安排名称,然后提交会立即跳转到日程详情编辑页面,添加更多信息。

    Google Calendar Bookmarklet书签小工具代码:

    javascript:var s;if(window.getSelection){s=window.getSelection();}else{s=document.selection.createRange().text;}var t=prompt(

  5. Google Translate书签小工具

    点击Google Translate书签小工具,可以将外文网页文章一键快速翻译成你的母语或者自己需要的语言,由于是机器自动翻译只会让你达到读懂大义的目的。

    Google Translate书签小工具代码:

    javascript:var t=((window.getSelection&&window.getSelection())||(document.getSelection&&document.getSelection())||(document.selection &&document.selection.createRange&&document.selection.createRange().text));var e=(document.charset||document.characterSet);if(t!=

  6. Google Web Search书签小工具

    Google Web Search书签小工具,提供一种快速进行Google资讯搜索的途径,点击该书签后输入需要查询的内容,然后会在新的页面中显示查询结果。

    Google Web Search书签小工具代码:

    javascript:q = “” + (window.getSelection ? window.getSelection() : document.getSelection ? document.getSelection() : document.selection.createRange().text); if (!q) q = prompt(“Search terms? … “, “”); if (q!=null) location=”http://www.google.com/search?q=” + escape(q).replace(/ /g, “+”); void 0

  7. Google Image Search书签小工具

    该Google Image Search书签小工具,和上述的Google Web Search一样,可以直接显示相应搜索内容的图片结果,对于经常查找图片的人士来说节省大量时间。

    Google Image Search书签小工具代码:

    javascript:q = “” + (window.getSelection ? window.getSelection() : document.getSelection ? document.getSelection() : document.selection.createRange().text); if (!q) q = prompt(“Search terms? … “, “”); if (q!=null) location=”http://images.google.com/images?q=” + escape(q).replace(/ /g, “+”); void 0

  8. Google Site Search书签小工具

    Google Site Search书签小工具,可以查询具体某个网站的内容,比如对于经常阅读我的职场GTD网站(www.ilovegtd.net)朋友来说,该方法可以快速进行某网站的主题文章查询阅读。

    Google Site Search书签小工具代码:

    javascript:q=””+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);if(!q)q=prompt(“Search terms [leave selection and box blank to list all pages] …”).replace(/\s\+/g,”%252B”);if(q!=null)location=”http://www.google.com/search?q=”+q.replace(/\s+/g,”+”)+”+site:”+location.hostname;void(0);

  9. Gmail This书签小工具

    该Gmail This书签小工具,对于邮件分享网页非常方便,登陆Google账号后,在弹出框中显示网页名称和地址,而名称是作为邮件标题,地址是作为邮件主题内容。

    Gmail This书签小工具代码:

    javascript:popw=

评论(0