Merge branch 'export-firefox-tabs' into 'master'

Export of firefox tabs

See merge request suzanne.soy/web-client!1
This commit is contained in:
Suzanne Soy 2020-10-10 01:35:16 +00:00
commit a1bb152ee4
2 changed files with 37 additions and 0 deletions

29
export-firefox-tabs.sh Executable file
View File

@ -0,0 +1,29 @@
#!/usr/bin/env nix-shell
#!nix-shell --pure -i bash -p dejsonlz4 jq bash -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/fea633695211167753ee732c9087808d0c57461c.tar.gz
# Usage: ./export-firefox-bookmarks.sh [path/to/.mozilla/firefox/XXXXXXXX.profile]
set -euET -o pipefail
if test $# -ge 1; then
profile="$1"
else
# use printf to avoid echo's ambiguity; sort for determinism; use null separator (only byte illegal in UNIX paths, save trailing whitespace with a dummy x (not needed here as the string ends with "default", but a good habit nevertheless)
profile="$(printf "%s"\\0 ~/.mozilla/firefox/*.default | sort -z | head -z -n 1 | tr -d \\0; printf "x")"
profile="${profile%x}"
fi
if test -e "$profile"/sessionstore-backups/recovery.jsonlz4; then
sessionstore="$profile"/sessionstore-backups/recovery.jsonlz4
elif test -e "$profile"/sessionstore.jsonlz4; then
sessionstore="$profile"/sessionstore.jsonlz4
elif test -e "$profile"/sessionstore.js; then
sessionstore="$profile"/sessionstore.js
else
printf "Could not find session store at $profile/sessionstore-backups/recovery.jsonlz4 or $profile/sessionstore.jsonlz4 or $profile/sessionstore.js"
exit 1
fi
# TODO: when the name is sessionstore.js, it might not need a decompression with dejsonlz4 ?
# Tabs from all windows are printed together, edit the jq expression to your needs
dejsonlz4 "$sessionstore" | jq '.windows[].tabs[].entries[-1].url'

View File

@ -0,0 +1,8 @@
#!/bin/bash
set -euET -o pipefail
echo "This is just an example, best not to depend on the user having the panorama plug-in installed."
exit 1.
dejsonlz4 ~suzanne/apps/chromium/.mozilla/firefox/*.default/sessionstore-backups/recovery.jsonlz4 | jq '.windows[0].tabs[]|.extData["extension:panorama-tab-groups@example.com:thumbnail"]' -r | jq '.thumbnail'