Bookmarklet下载最新的Chromium夜间版本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Bookmarklet下载最新的Chromium夜间版本相关的知识,希望对你有一定的参考价值。
Only works in new tab, because of limitation of cross-domain AJAX
javascript:var c=new XMLHttpRequest();c.onreadystatechange=function(){if(this.readyState==4&&this.status==200){document.location.assign('http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/'+this.responseText+'/chrome-win32.zip');}};c.open('GET','http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/LATEST',true);c.send(null); // formatted javascript: var c=new XMLHttpRequest(); c.onreadystatechange=function(){ if(this.readyState==4&&this.status==200){ document.location.assign('http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/'+this.responseText+'/chrome-win32.zip'); } } ; c.open('GET','http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/LATEST',true); c.send(null);
以上是关于Bookmarklet下载最新的Chromium夜间版本的主要内容,如果未能解决你的问题,请参考以下文章