{"id":15202810,"url":"https://github.com/0xf4r/edge-chrome-bookmark-sync","last_synced_at":"2026-03-05T23:38:05.448Z","repository":{"id":255674745,"uuid":"853380662","full_name":"0xf4r/edge-chrome-bookmark-sync","owner":"0xf4r","description":"Two-Way Bookmark Sync Between Microsoft Edge and Google Chrome","archived":false,"fork":false,"pushed_at":"2024-09-06T14:44:06.000Z","size":4,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-07T05:50:19.632Z","etag":null,"topics":["batch-script","google-chrome","google-chrome-extension","microsoft-edge","microsoft-edge-extension","powershell-script","task-scheduler"],"latest_commit_sha":null,"homepage":"","language":"Batchfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0xf4r.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}},"created_at":"2024-09-06T14:41:06.000Z","updated_at":"2025-09-23T13:36:03.000Z","dependencies_parsed_at":"2024-09-06T17:28:55.466Z","dependency_job_id":"e8979e93-2890-42d7-b562-668f1a127592","html_url":"https://github.com/0xf4r/edge-chrome-bookmark-sync","commit_stats":null,"previous_names":["0xf4r/edge-chrome-bookmark-sync"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/0xf4r/edge-chrome-bookmark-sync","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xf4r%2Fedge-chrome-bookmark-sync","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xf4r%2Fedge-chrome-bookmark-sync/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xf4r%2Fedge-chrome-bookmark-sync/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xf4r%2Fedge-chrome-bookmark-sync/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0xf4r","download_url":"https://codeload.github.com/0xf4r/edge-chrome-bookmark-sync/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xf4r%2Fedge-chrome-bookmark-sync/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30155677,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T22:39:40.138Z","status":"ssl_error","status_checked_at":"2026-03-05T22:39:24.771Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["batch-script","google-chrome","google-chrome-extension","microsoft-edge","microsoft-edge-extension","powershell-script","task-scheduler"],"created_at":"2024-09-28T04:05:28.145Z","updated_at":"2026-03-05T23:38:05.428Z","avatar_url":"https://github.com/0xf4r.png","language":"Batchfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Two-Way Bookmark Sync Between Microsoft Edge and Google Chrome\n\n### Description\nThis project provides a simple automation script to synchronize bookmarks between Microsoft Edge and Google Chrome based on the last modified file. It uses a batch script to compare the modification times of the bookmark files in both browsers, ensuring that the most recent bookmarks are always up-to-date across both platforms.\n\n### Features\n- **Automatic Bookmark Synchronization**: Syncs the latest modified bookmarks between Edge and Chrome.\n- **Customizable Scheduling**: Use Task Scheduler to run the script automatically at specified intervals or events.\n- **Simple and Lightweight**: Minimal dependencies, only requiring a batch script and Task Scheduler.\n\n### Requirements\n- Windows operating system.\n- Google Chrome and Microsoft Edge installed.\n- Basic understanding of batch scripting and Task Scheduler.\n\n### Setup Instructions\n\n1. **Clone the Repository**:\n   ```bash\n   git clone https://github.com/0xf4r/edge-chrome-bookmark-sync.git\n   cd edge-chrome-bookmark-sync\n   ```\n\n2. **Update the Script**:\n   - Open `sync_bookmarks.bat` and replace `USERNAME` with your actual Windows username.\n\n3. **Batch Script**: `sync_bookmarks.bat`\n   ```batch\n   @echo off\n   setlocal\n\n   REM Define paths to the bookmark files for Edge and Chrome\n   set CHROME_BOOKMARKS=\"C:\\Users\\USERNAME\\AppData\\Local\\Google\\Chrome\\User Data\\Default\\Bookmarks\"\n   set EDGE_BOOKMARKS=\"C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\Edge\\User Data\\Default\\Bookmarks\"\n\n   REM Get the last modified times of the bookmark files\n   for %%f in (%CHROME_BOOKMARKS%) do set CHROME_MODIFIED=%%~tf\n   for %%f in (%EDGE_BOOKMARKS%) do set EDGE_MODIFIED=%%~tf\n\n   REM Compare the last modified times and sync accordingly\n   if \"%CHROME_MODIFIED%\" GTR \"%EDGE_MODIFIED%\" (\n       copy /Y %CHROME_BOOKMARKS% %EDGE_BOOKMARKS%\n       echo Chrome bookmarks were newer and copied to Edge.\n   ) else (\n       copy /Y %EDGE_BOOKMARKS% %CHROME_BOOKMARKS%\n       echo Edge bookmarks were newer and copied to Chrome.\n   )\n\n   endlocal\n   ```\n\n4. **Set Up Task Scheduler**:\n   - Open Task Scheduler.\n   - Create a new task to run `sync_bookmarks.bat` at your desired schedule (e.g., daily or at logon).\n\n### Usage\n\n- Run the batch script manually or let it run automatically through Task Scheduler.\n- The script will check which browser's bookmarks were modified last and sync them to the other browser.\n\n### Example\n```bash\n# Clone the repo\ngit clone https://github.com/0xf4r/edge-chrome-bookmark-sync.git\n\n# Customize the script with your paths\nnotepad sync_bookmarks.bat\n\n# Run the script manually or set up Task Scheduler to automate\n```\n\n### License\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xf4r%2Fedge-chrome-bookmark-sync","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xf4r%2Fedge-chrome-bookmark-sync","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xf4r%2Fedge-chrome-bookmark-sync/lists"}