9个Google书签小工具强化Google使用服务体系
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
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);
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)})();
Google Calendar Add Event书签小工具
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!=
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
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
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);
Gmail This书签小工具
评论(0)