Skip to content

Instantly share code, notes, and snippets.

@luluco250
Created April 20, 2022 01:32
Show Gist options
  • Save luluco250/b9488ba33a8c22ca2b6eaed668ba0a70 to your computer and use it in GitHub Desktop.
Save luluco250/b9488ba33a8c22ca2b6eaed668ba0a70 to your computer and use it in GitHub Desktop.
List Firefox addons.
#!/bin/sh
cd "$HOME/.mozilla/firefox"
cd "$(ls -d *.default-release/ | head -n 1)"
jq \
-r '.addons[] | select(.type == "extension" and .active == true and .hidden == false) | .defaultLocale.name' \
extensions.json \
| sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment