巧妙利用浏览器书签实现功能!附带在线翻译代码

chrome

 

引入

浏览器书签(下文简称“书签”)大家都很熟悉了。Ctrl+D 可以立马将本站加入书签,方便下次访问哦~

本文我们介绍一下,利用书签来运行一下简单的javascript代码!

而这些代码能实现一些常用的功能!

 

URL粘贴

将以下代码粘贴到浏览器(IE除外哦)的URL中,回车看看?

javascript:void((function(){alert('3%E7%A7%92%E5%90%8E%E8%B7%B3%E8%BD%AC%E5%95%A6');setTimeout(function(){location.href='http://51.ruyo.net?test'},3000);})())

注意:直接向浏览器URL粘贴以上代码时 javascript: 会被过滤掉,需要手动补上。注意冒号是半角的哦,别手残~。

 

 

每次粘贴代码挺费劲~ 还得手敲几个字母。效率太低了。

看看书签的方式。

 

保存书签

保存到书签如何操作呢?

首先,按 Ctrl + D 会弹出一个保存书签的框。

 

然后,点击修改。名称随便,将我们的代码粘贴到网址的框里。保存!

 

最后,书签里就有了!点击看效果吧。

 

注意:Chrome浏览器默认打开网站的时候书签不显示。可利用快捷键:Ctrl + Shift + B来打开或者关闭。

或者打开一个新的页签,如图右键设置一下。

好了,技巧掌握了!给大家推荐一些比较实用的代码吧!!

 

实用代码

在线翻译

 

沪江划词翻译

javascript:void((function(){hjelm=document.createElement('script');hjelm.setAttribute('src','http://dict.hjenglish.com/app/js/dict_ajax.js');document.body.appendChild(hjelm);})())

海词划词翻译

javascript:void((function() {var element=document.createElement('script'); element.setAttribute('src', 'http://dict.cn/hc/init.php'); document.body.appendChild(element);})())

有道全文翻译

javascript:void((function() {var element = document.createElement('script');element.id = 'outfox_seed_js';element.charset = 'utf-8',element.setAttribute('src', 'http://fanyi.youdao.com/web2/seed.js?' + Date.parse(new Date()));document.body.appendChild(element);})())

谷歌全文翻译(暂时不能用,调试中)

javascript:void(function(){d=document;b=d.body;o=d.createElement('scri'+'pt');o.setAttribute('src','http://translate.google.cn/translate_a/element.js?cb=googleTranslateElementInit');o.setAttribute('type','text/javascript');b.appendChild(o);v=b.insertBefore(d.createElement('div'),b.firstChild);v.id='google_translate_element';v.style.display='none';p=d.createElement('scri'+'pt');p.text='function%20googleTranslateElementInit(){new%20google.translate.TranslateElement({pageLanguage:%22%22},%22google_translate_element%22);}';p.setAttribute('type','text/javascript');b.appendChild(p);}())

bing划词翻译(暂时不能用,调试中)

javascript:void(function(){script=document.createElement('script');script.src='http://dict.bing.com.cn/cloudwidget/Scripts/Generated/BingTranslate_Selection_ShowIcon.js';script.onload=INIT;document.body.appendChild(script)})();function INIT(){BingCW.Init({MachineTranslation:true,WebDefinition:true})};)

bing悬浮翻译(暂时不能用,调试中)

javascript:(function(){script=document.createElement('script');script.src='http://dict.bing.com.cn/cloudwidget/Scripts/Generated/BingTranslate_Hover_Phrase_Selection_ShowIcon.js';script.onload=INIT;document.body.appendChild(script);})();function INIT(){BingCW.Init({MachineTranslation:true,WebDefinition:true});}

 

 

版权声明:
作者:我是小马甲~
链接:https://51.ruyo.net/3072.html
来源:如有乐享
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
巧妙利用浏览器书签实现功能!附带在线翻译代码
  引入 浏览器书签(下文简称“书签”)大家都很熟悉了。Ctrl+D 可以立马将本站加入书签,方便下次访问哦~ 本文我们介绍一下,利用书签来运行一下简单的ja……
<<上一篇
下一篇>>
文章目录
关闭
目 录