{"id":25173757,"url":"https://github.com/art2url/solve-sync","last_synced_at":"2026-05-08T04:42:10.044Z","repository":{"id":274965854,"uuid":"923573294","full_name":"art2url/solve-sync","owner":"art2url","description":"🧩 SolveSync is a Chrome extension that automates uploading your accepted LeetCode solutions to a GitHub repository using secure OAuth authentication.","archived":false,"fork":false,"pushed_at":"2025-02-18T15:12:54.000Z","size":897,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-02-18T16:24:33.803Z","etag":null,"topics":["automatically-push","automation","chrome-extension","chrome-extension-api","chromeextension","coding-solutions","github","javascript","leetcode","leetcode-solutions","leetcode-sync","oauth","problem-solving","web-development"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/art2url.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":"2025-01-28T13:48:08.000Z","updated_at":"2025-02-14T09:57:14.000Z","dependencies_parsed_at":"2025-01-30T12:31:47.879Z","dependency_job_id":"dcf20a21-6c69-47d5-98a3-5b37e001cfbc","html_url":"https://github.com/art2url/solve-sync","commit_stats":null,"previous_names":["art2url/solvesync","art2url/solve-sync"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/art2url%2Fsolve-sync","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/art2url%2Fsolve-sync/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/art2url%2Fsolve-sync/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/art2url%2Fsolve-sync/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/art2url","download_url":"https://codeload.github.com/art2url/solve-sync/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247094778,"owners_count":20882670,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["automatically-push","automation","chrome-extension","chrome-extension-api","chromeextension","coding-solutions","github","javascript","leetcode","leetcode-solutions","leetcode-sync","oauth","problem-solving","web-development"],"created_at":"2025-02-09T11:16:32.873Z","updated_at":"2026-05-08T04:42:05.018Z","avatar_url":"https://github.com/art2url.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SolveSync Chrome Extension\n\nSolveSync is a Chrome extension that automates uploading your accepted LeetCode solutions directly to your GitHub repository. It uses secure OAuth authorization to handle your credentials and commits your solutions in a structured format.\n\n## Features\n\n- **Automatic Uploads:** Seamlessly upload accepted LeetCode solutions to your GitHub.\n- **Organized Repository:** Solutions are categorized by difficulty (Easy, Medium, Hard) and stored in folders named after the problem title.\n- **Secure Authorization:** OAuth 2.0 ensures your GitHub credentials are handled securely.\n\n## Technologies Used\n\n- **Frontend:** JavaScript, Chrome Extensions API\n- **Backend:** Node.js, Express, Axios, CORS\n- **Authentication:** GitHub OAuth 2.0\n\n## Installation\n\n1. **Clone the Repository:**\n   ```bash\n   git clone https://github.com/art2url/solve-sync.git\n   ```\n\n2. **Load Extension in Chrome:**\n   - Go to `chrome://extensions/`.\n   - Enable **Developer Mode** (top right corner).\n   - Click **Load unpacked** and select the cloned `solve-sync` directory.\n\n3. **Set Up GitHub OAuth App:**\n   - Go to [GitHub Developer Settings](https://github.com/settings/developers).\n   - Click on **New OAuth App**.\n   - **Application Name:** SolveSync\n   - **Homepage URL:** `https://github.com/your-username`\n   - **Authorization Callback URL:** `https://\u003cyour-extension-id\u003e.chromiumapp.org`\n   - After creation, copy the **Client ID** and **Client Secret**.\n\n4. **Configure the Backend Server:**\n   - Clone the backend repository:\n     ```bash\n     git clone https://github.com/art2url/solve-sync-oauth-server.git\n     cd solve-sync-oauth-server\n     ```\n   - Create a `.env` file in the root directory with the following content:\n     ```env\n     GITHUB_CLIENT_ID=your-client-id\n     GITHUB_CLIENT_SECRET=your-client-secret\n     ```\n   - Deploy the backend to a free server like [Render](https://render.com/):\n     - Create a new **Web Service** on Render.\n     - Connect your GitHub repository and deploy.\n     - Ensure the backend URL is updated in the extension's `manifest.json` under `host_permissions`.\n\n5. **Configure Extension Settings:**\n   - Open the SolveSync extension popup.\n   - **Login with GitHub** using the OAuth flow.\n   - Enter your **Repository** and **Branch** where solutions will be uploaded.\n\n## Usage\n\n1. Go to any LeetCode problem.\n2. Solve and submit the problem.\n3. Once your solution is **Accepted**, it will be automatically uploaded to your GitHub repository in the specified structure.\n\n## Repository Structure\n\n```\n├── easy\n│   └── 2703-return-length-of-arguments-passed\n│       ├── 2703-return-length-of-arguments-passed.js\n│       └── readme.md\n├── medium\n│   └── example-medium-problem\n│       ├── example-medium-problem.py\n│       └── readme.md\n└── hard\n    └── example-hard-problem\n        ├── example-hard-problem.java\n        └── readme.md\n```\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n\n---\n\nEnjoy solving problems and keeping your GitHub repository updated effortlessly! 🚀\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fart2url%2Fsolve-sync","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fart2url%2Fsolve-sync","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fart2url%2Fsolve-sync/lists"}