-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stopped working for me. FF 35.0.1 #28
Comments
Same happened to me. Please help with this, I have backed up most of my pages with this plugin... |
I know this is an old issue, but this is now happening to me with latest FF. Is there any way to recover? I think I have thousands of bookmarks in there, if they're still there. |
Agree completely in general. Any plugin which is abandoned needs to have a very clear marker that it is abandoned. I left firefox entirely because of crap like this. Edit: Perhaps you could roll back your version of firefox somehow? |
Since I've been burned by both this extension and the onetab extension, I've now got a crude replacement system using copy urls expert, open with, xclip, and libnotify.
#!/bin/bash
set -e
TAB_DIR="$HOME/.config/ff-tabs"
mkdir -p "$TAB_DIR"
cat "$TAB_DIR"/*.txt | xclip -sel clip
notify-send -i firefox "Copied $(xclip -sel clip -o | wc -l) URLs from file:" "$(xclip -sel clip -o | head)\n. . ."
[Desktop Entry]
Exec=~/path/to/read.sh
Name=Tab Files to Clipboard
NoDisplay=true
Type=Application
Icon=document-import
#!/bin/bash
set -e
TAB_DIR="$HOME/.config/ff-tabs"
mkdir -p "$TAB_DIR"
TAB_FILE="$TAB_DIR/$(date +%Y.%m.%d_%H.%M.%S).txt"
MAX_BACKUPS=5
if [[ -f "$TAB_FILE" ]]; then
for (( i="$MAX_BACKUPS"; i>=1; i-- )); do
mv "$TAB_FILE.$i" "$TAB_FILE.$((i+1))" || true
done
mv "$TAB_FILE" "$TAB_FILE.1"
rm "$TAB_FILE.$((MAX_BACKUPS+1))" || true
fi
xclip -sel clip -o > "$TAB_FILE"
notify-send -i firefox "Saved $(xclip -sel clip -o | wc -l) URLs to file:" "$(xclip -sel clip -o | head)\n. . ."
[Desktop Entry]
Exec=~/path/to/write.sh
Name=Clipboard to Tab File
NoDisplay=true
Type=Application
Icon=document-export |
@AndydeCleyre Since you included a video demonstration on how to use it, can you also explain how to install/run it? I'm very new to Linux and I'm using a window manager (i3wm) so it would be of great help (I don't think window managers support .desktop files). What do I do after I install the two Firefox addons 'copy urls expert' and 'open with'? Thank you. |
@mindstormer12 Sure. No problem regarding
which xclip
which notify-send Those commands will show you where those executables are on your system, or report that they weren't found. If either was not found, install the corresponding package with your package manager. If you're not sure about this, let me know which distro you're using.
chmod +x read.sh write.sh
And that's that. There are nice options available for If the notification sticks around longer than you like, you can edit the notify-send -t 5000 -i firefox " . . . If you change the script files, the changes will be immediate. If you change the launcher ( This is far from perfect or complete or streamlined, but its operation should at least be transparent and safe. That said, it's largely untested and may eat your cat. Let me know what you think (or what goes wrong). |
Where did my cat go? 🐱 |
Stopped working for me. FF 35.0.1
I click the button and nothing happens and the tab grenade page is empty.
The text was updated successfully, but these errors were encountered: