2

Given the ID of a Chrome extension, what's the URL to download it using curl?

4

1 に答える 1

3

これは私にとってはうまくいきます。

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

.crxファイルは で解凍できることに注意してくださいunzip

于 2013-10-29T17:32:23.020 に答える