Skip to content

Instantly share code, notes, and snippets.

@lidel
Created December 16, 2020 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lidel/79892c62a5592d259a64c569fe0e32c8 to your computer and use it in GitHub Desktop.
Save lidel/79892c62a5592d259a64c569fe0e32c8 to your computer and use it in GitHub Desktop.
Exact user count at AMO
# Stats on AMO are available only after login,
# but the user count is included on the listing page ¯\_(ツ)_/¯
curl -s https://addons.mozilla.org/en-US/firefox/addon/ipfs-companion/ | grep -Po '<dd class="MetadataCard-content">\K[[:digit:],]+(?=</dd><dt class="MetadataCard-title">Users</dt>)' | sed 's/,//g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment