{"id":50299111,"url":"https://github.com/umbrellaleaf5/bookmarks-synchronizer","last_synced_at":"2026-05-28T11:02:19.035Z","repository":{"id":356374304,"uuid":"1230689637","full_name":"UmbrellaLeaf5/bookmarks-synchronizer","owner":"UmbrellaLeaf5","description":"tool for syncing Chrome bookmarks across multiple profiles","archived":false,"fork":false,"pushed_at":"2026-05-07T18:51:30.000Z","size":262,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-07T20:41:07.676Z","etag":null,"topics":["bookmarks","chrome","chrome-bookmarks","python"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/UmbrellaLeaf5.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-05-06T08:22:21.000Z","updated_at":"2026-05-07T18:51:34.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/UmbrellaLeaf5/bookmarks-synchronizer","commit_stats":null,"previous_names":["umbrellaleaf5/bookmarks-synchronizer"],"tags_count":null,"template":false,"template_full_name":"UmbrellaLeaf5/template_python_usual","purl":"pkg:github/UmbrellaLeaf5/bookmarks-synchronizer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UmbrellaLeaf5%2Fbookmarks-synchronizer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UmbrellaLeaf5%2Fbookmarks-synchronizer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UmbrellaLeaf5%2Fbookmarks-synchronizer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UmbrellaLeaf5%2Fbookmarks-synchronizer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/UmbrellaLeaf5","download_url":"https://codeload.github.com/UmbrellaLeaf5/bookmarks-synchronizer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UmbrellaLeaf5%2Fbookmarks-synchronizer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33605379,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-28T02:00:06.440Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bookmarks","chrome","chrome-bookmarks","python"],"created_at":"2026-05-28T11:02:16.492Z","updated_at":"2026-05-28T11:02:19.029Z","avatar_url":"https://github.com/UmbrellaLeaf5.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bookmarks Synchronizer\n\nTool for syncing Chrome bookmarks across multiple profiles.\n\n## Purpose\n\nIf you have multiple Chrome profiles (e.g., personal, study, work) - each has\nboth unique bookmark folders and shared ones (e.g., Tools, Important).\nBookmarks Synchronizer finds discrepancies in shared folders and helps bring them\nto a unified up-to-date state - without manual copying.\n\n## How it works\n\n1. Export bookmarks from each Chrome profile to HTML\n   (Ctrl+Shift+O → \"Export bookmarks\") and place files in `bookmarks/`\n2. Configure `config.json` - specify file paths and shared folder names\n3. Run the script - it finds discrepancies and suggests solutions for each:\n   - **a** - add bookmark/folder to all profiles where it's missing\n   - **r** - remove bookmark/folder from all profiles\n   - **s** - skip (leave as is)\n4. The script creates backups of modified files in `bookmarks/backups/`\n   (filename: `{original}_YYYYMMDD_HHMMSS.html`)\n   and writes updated files\n\n### Logging\n\nAll sync operations are logged to `bookmarks/sync.log`\n(1 MB rotation). Logging is file-only - terminal stays\nclean for interactive interaction.\n\n### Sync features\n\n- Folders listed in `shared_folders` are considered shared - all their contents\n  (including nested subfolders) sync recursively\n- If a shared folder is missing in a profile - it's created automatically\n- When adding a folder, all its bookmarks and subfolders are copied from the source profile\n  (deep copy)\n- Bookmark icons (favicon) are preserved\n- Parent folders are created automatically when needed\n- Folder names with slashes are supported (e.g., `Info/program` is a single folder)\n\n## Installation and usage\n\n```bash\nuv venv .venv\nsource .venv/Scripts/activate\nuv sync\n```\n\nConfigure `config.json` for your profiles.\n\n```bash\nuv run main.py              # interactive mode\nuv run main.py --dry-run    # check without writing changes\n```\n\nDependencies: `loguru` (logging), `pytest` (dev).\n\n## Code verification\n\n```bash\nruff check .\nruff format --check .\npyright .\npython -m pytest tests/ -v\n```\n\n## Configuration format\n\n```json\n{\n  \"profiles\": {\n    \"pc\": \"bookmarks/bookmarks_for_pc.html\",\n    \"study\": \"bookmarks/bookmarks_for_study.html\",\n    \"work\": \"bookmarks/bookmarks_for_work.html\"\n  },\n  \"shared_folders\": [\"Tools\", \"Important\"]\n}\n```\n\n- `profiles` - list of profiles with paths to HTML files\n- `shared_folders` - names of shared folders (including all nested contents)\n\n## License\n\nPublic Domain (Unlicense). See [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fumbrellaleaf5%2Fbookmarks-synchronizer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fumbrellaleaf5%2Fbookmarks-synchronizer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fumbrellaleaf5%2Fbookmarks-synchronizer/lists"}