Compare commits
10 Commits
00adf7b9dd
...
68db618570
Author | SHA1 | Date | |
---|---|---|---|
![]() |
68db618570 | ||
![]() |
a19996ff74 | ||
![]() |
abdc5f34c6 | ||
![]() |
cbd1d384ff | ||
![]() |
f73cb26a4e | ||
![]() |
a1bb152ee4 | ||
![]() |
bc1c54af82 | ||
![]() |
1b3c5871a2 | ||
![]() |
7632c673fa | ||
![]() |
078652e118 |
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/tests-results/
|
16
export-chrome-bookmarks.sh
Executable file
16
export-chrome-bookmarks.sh
Executable file
|
@ -0,0 +1,16 @@
|
|||
#!/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; save trailing whitespace with a dummy x (not needed here as the string ends with "Default", but a good habit nevertheless)
|
||||
profile="$(printf "%sx" ~/.config/chromium/Default/)"
|
||||
profile="${profile%x}"
|
||||
fi
|
||||
|
||||
jq '.roots[] | recurse(.children?[]?) | "\( .name? ): \( .url? )"' < "$profile"/Bookmarks
|
23
export-firefox-bookmarksbackup.sh
Executable file
23
export-firefox-bookmarksbackup.sh
Executable file
|
@ -0,0 +1,23 @@
|
|||
#!/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 nonetheless)
|
||||
profile="$(printf "%s"\\0 ~/.mozilla/firefox/*.default | sort -z | head -z -n 1 | tr -d \\0; printf "x")"
|
||||
profile="${profile%x}"
|
||||
fi
|
||||
|
||||
# use printf to avoid echo's ambiguity; sort to get latest backup; use null separator (only byte illegal in UNIX paths, save trailing whitespace with a dummy x (not neede here as the string ends with ".jsonlz4" but a good habit nonetheless)
|
||||
js="$(printf "%s"\\0 "$profile"/bookmarkbackups/bookmarks-*.jsonlz4 | sort -z --general-numeric-sort | tail -z -n 1 | tr -d \\0; printf "x")"
|
||||
js="${js%x}"
|
||||
|
||||
# TODO: filter out entries whose uri is null after checking that they're not important
|
||||
# TODO: add folder structure to give a path for each bookmark
|
||||
|
||||
dejsonlz4 "$js" | jq 'recurse(.children?[]?) | "\( .title? ): \( .uri? )"'
|
29
export-firefox-tabs.sh
Executable file
29
export-firefox-tabs.sh
Executable 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. The input format is described at https://wiki.mozilla.org/Firefox/session_restore#For_developers
|
||||
dejsonlz4 "$sessionstore" | jq '.windows[].tabs[].entries[-1].url'
|
8
export-firefox-thumbnails-from-panorama.sh
Executable file
8
export-firefox-thumbnails-from-panorama.sh
Executable 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'
|
29
screenshot-full-firefox.sh
Executable file
29
screenshot-full-firefox.sh
Executable file
|
@ -0,0 +1,29 @@
|
|||
#!/usr/bin/env nix-shell
|
||||
#!nix-shell --pure -i bash -p firefox-esr bash -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/fea633695211167753ee732c9087808d0c57461c.tar.gz
|
||||
|
||||
set -euET -o pipefail
|
||||
|
||||
usage() {
|
||||
printf "Usage: ./screenshot-full-firefox.sh url filename"\\n
|
||||
}
|
||||
|
||||
if test $# -ne 2; then
|
||||
usage
|
||||
exit 1
|
||||
elif test $# -eq 1 && (test "x$1" = "x-h" || test "x$1" = "x--help"); then
|
||||
usage
|
||||
exit 0
|
||||
fi
|
||||
|
||||
url="$1"
|
||||
image="$2"
|
||||
|
||||
temp_profile_home="$(mktemp -d)"
|
||||
|
||||
function cleanup() {
|
||||
rm -fr --one-file-system "$temp_profile_home"
|
||||
}
|
||||
|
||||
trap cleanup EXIT
|
||||
|
||||
HOME="$temp_profile_home" firefox --headless --window-size 1920 --screenshot "$image" "$url"
|
11
tests.sh
Executable file
11
tests.sh
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/env nix-shell
|
||||
#!nix-shell -i bash -p bash nix -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/fea633695211167753ee732c9087808d0c57461c.tar.gz
|
||||
|
||||
# Older nix-shell --pure versions prevent nested nix-shells to properly download dependencies, so the above doesn't use --pure.
|
||||
# If this script increases in complexity and becomes more sensitive to env vars, use --pure and wrap it with an impure launcher.
|
||||
|
||||
set -euET -o pipefail
|
||||
|
||||
for i in tests/*.sh; do
|
||||
"$i"
|
||||
done
|
7
tests/test-screenshot-full-firefox.sh
Executable file
7
tests/test-screenshot-full-firefox.sh
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/env nix-shell
|
||||
#!nix-shell --pure -i bash -p bash nix -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/fea633695211167753ee732c9087808d0c57461c.tar.gz
|
||||
|
||||
set -euET -o pipefail
|
||||
|
||||
cd "$(dirname "$0")"
|
||||
../screenshot-full-firefox.sh https://example.com/ ../tests-results/screenshots-full-firefox.png
|
Loading…
Reference in New Issue
Block a user