如何使用curl下载Chrome扩展程序?

时间:2013-10-29 17:23:13

标签: google-chrome google-chrome-extension

考虑到Chrome扩展程序的ID,使用curl下载它的URL是什么?

1 个答案:

答案 0 :(得分:2)

这适合我。

ID=lkajd9lk32093lkdd93lkd # replace with target extension's id in the store
URL="https://clients2.google.com/service/update2/crx?response=redirect&x=id%3D$ID%26uc"

# -L to handle any redirects
curl -L "$URL" > some_file.crx