本文介绍了如何从Chrome网上应用店中下载特定ID的CRX文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想从webstore下载扩展名的.crx文件,当我从webstore安装扩展名时,我使用fiddler来分析网络请求。

例如,对于扩展程序:

下载链接是:



点击
现在我想知道如果有一个通用的方法得到.crx的扩展名,问题是Google加密如何?

bjclh onkhgkidmlkghlkiffhoikhaajg





OgAAADQ_Loe5gfVPF2OUaB35tvex-NKlmA8V4K5YlWuvLCknMH7egLLmnMoFuCZePl_idE1GMf8jZC2KbjQqyyLDoDAAxlKa5eDp-z9frOp​​pHWtQsRU3 -iGrrrrA



任何想法都会很有帮助。

解决方案

扩展名我不得不下载其他CRX,只能自动知道扩展名。我通过打开以下URL来解决这个问题:

  http://clients2.google.com/service/update2/crx?response = redirect& x = id%3D< EXTENSION_ID_HERE>%26uc%26lang%3Den-US& prod = chrome 

此页面将转发给您 https://clients2.googleusercontent.com/crx/download/ 地址。



我不记得我是怎么想出这个URL的(这是在某个地方的页面源代码,或者是使用网络嗅探器),但是自从去年十二月以来,它对我来说一直很好,所以看起来很可靠。 p>

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 example, for the extension: https://chrome.google.com/webstore/detail/bjclhonkhgkidmlkghlkiffhoikhaajg
the download link is:

https://clients2.googleusercontent.com/crx/download/OgAAADQ_Loe5gfVPF2OUaB35tvex-NKlmA8V4K5YlWuvLCknMH7egLLmnMoFuCZePl_idE1GMf8jZC2KbjQqyyLDoDAAxlKa5eDp-z9frOppHWtQsRU3-iGrrrrA/extension_1_7_11.crx
Now I'm wondering if there is a universal method for get .crx of an extension, the problem is how did Google encryption

bjclhonkhgkidmlkghlkiffhoikhaajg

into

OgAAADQ_Loe5gfVPF2OUaB35tvex-NKlmA8V4K5YlWuvLCknMH7egLLmnMoFuCZePl_idE1GMf8jZC2KbjQqyyLDoDAAxlKa5eDp-z9frOppHWtQsRU3-iGrrrrA ?

any idea will be helpful.

解决方案

For one of my extensions I had to download other CRXs automatically knowing only extension ID. I solved this by opening the following URL:

http://clients2.google.com/service/update2/crx?response=redirect&x=id%3D<EXTENSION_ID_HERE>%26uc%26lang%3Den-US&prod=chrome

this page will forward you to that https://clients2.googleusercontent.com/crx/download/ address.

I don't remember already how I came up with that URL (it was either in page source somewhere or I used network sniffer), but it has been working great for me since last December, so it looks reliable.

这篇关于如何从Chrome网上应用店中下载特定ID的CRX文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 21:50