#!/bin/bash
# chrome_profiles_list - list chrome profiles

< ~/.config/mychrome/Local\ State \
jq -r '.profile.info_cache | to_entries | map(.key + "\t" + .value.name) | .[]' |
sort -k1,1 -k2,2n
