Post #1828626
2026-04-30 17:11 UTC
Replies (3)
-
@nekohayo@mastodon.social 2026-04-30 18:43
YOLO I guess, I was not going to be doing manual database surgery nor manually editing a thousand bookmarks, so ended up using https://addons.mozilla.org/firefox/addon/bookmark-url-batch-replacer/ and hoping that it can be trusted. That UI is sketchy as hell, but it seems like "/-/issues/" and "/-/work_items/" did not trigger any regexes.
-
@rnb@framapiaf.org 2026-04-30 17:22
@nekohayo Et pourquoi pas exporter les bookmarks (en HTML ou en JSON), corriger avec un outils dédié puis réimporter les bookmarks ?
-
@inguin@nerdculture.de 2026-04-30 18:06
@nekohayo Don't know of any extension, sorry. My own approach for a similar migration was to fix this up directly in the history/bookmarks database: - Quit Firefox - Find the places.sqlite file in your profile - Make a backup! - Type: sqlite3 places.sqlite - Type: update moz_places set url = replace(url, '/-/issues?', '/-/work_items?'); - Quit with Ctrl-D This will fix both bookmarks and the history. Unfortunately I have no clue how Firefox Sync will react to this stunt.