How to download a CRX file from the Chrome web store for a given ID?

前端 未结 10 2202
伪装坚强ぢ
伪装坚强ぢ 2020-11-29 15:36

I\'d like to download the .crx file of an extension from webstore, I use fiddler to analyze the network request when I install an extension from webstore and got it.
For

10条回答
  •  醉话见心
    2020-11-29 16:31

    Create a bookmark add the javascript function as the address. Browse to the chrome extension you want to download then click on the bookmark and it should start downloading.

    javascript:(function(){
        var pathname = location.pathname;pathArray = pathname.split("/");   
        location = ("http://clients2.google.com/service/update2/crx?response=redirect&x=id"+"%" + "3D" + pathArray[pathArray.length -1]+"%" + "26uc%" + "26lang%" + "3Den-US&prod=chrome"); })();
    

    Thanks

提交回复
热议问题