with open('Bookmarks_clean', 'w') as f: json.dump(data, f, indent=2) Your bookmarks are just a text file. That is both terrifying (because they can corrupt) and liberating (because you have full control). Don’t rely solely on Chrome Sync—it’s a convenience, not a backup.
Go now. Back up that Bookmarks file. You’ll thank yourself when your SSD dies next Tuesday. Have a Chrome bookmark horror story or a clever script? Drop it in the comments. where chrome bookmarks stored
You cannot just concatenate two JSON files. You must open both, copy the children array from one bookmark_bar into the other, ensuring you don't duplicate folder IDs (though Chrome regenerates IDs on startup). with open('Bookmarks_clean', 'w') as f: json
import json import re with open('Bookmarks', 'r', encoding='utf-8') as f: data = json.load(f) def clean_node(node): if 'children' in node: node['children'] = [clean_node(c) for c in node['children'] if not (c.get('type') == 'url' and 'pinterest.com' in c.get('url', ''))] return node Go now
Here is a simplified structure: