{"id":26517046,"url":"https://github.com/hashiiiii/gh-auto-load-more","last_synced_at":"2026-04-09T08:02:58.912Z","repository":{"id":282249749,"uuid":"947931653","full_name":"hashiiiii/gh-auto-load-more","owner":"hashiiiii","description":"Automatically expands all 'Load more...' buttons in GitHub PR reviews until all comments are visible.","archived":false,"fork":false,"pushed_at":"2025-03-13T14:37:03.000Z","size":84,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-13T15:33:44.194Z","etag":null,"topics":["chrome","chrome-extension","github"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":false,"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/hashiiiii.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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-03-13T13:28:40.000Z","updated_at":"2025-03-13T14:39:20.000Z","dependencies_parsed_at":"2025-03-13T15:44:33.370Z","dependency_job_id":null,"html_url":"https://github.com/hashiiiii/gh-auto-load-more","commit_stats":null,"previous_names":["hashiiiii/gh-auto-load-more"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashiiiii%2Fgh-auto-load-more","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashiiiii%2Fgh-auto-load-more/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashiiiii%2Fgh-auto-load-more/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashiiiii%2Fgh-auto-load-more/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hashiiiii","download_url":"https://codeload.github.com/hashiiiii/gh-auto-load-more/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244759961,"owners_count":20505716,"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":["chrome","chrome-extension","github"],"created_at":"2025-03-21T08:17:50.899Z","updated_at":"2025-10-25T16:40:06.883Z","avatar_url":"https://github.com/hashiiiii.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Auto Load More\n\u003cimg src=\"https://img.shields.io/badge/LICENSE-MIT-green\"\u003e\n\nA Chrome extension that automatically expands all \"Load more...\" buttons in GitHub PR reviews until all comments are visible.\n\n## Features\n\n- Automatically clicks \"Load more...\" buttons in GitHub PR review pages\n- Works recursively until all comments are expanded\n- Only activates on GitHub pull request pages\n- No data collection or tracking\n\n## Installation Guide\n\n### Quick Installation (Recommended for Users)\n\n1. Download the pre-built extension ZIP file from the [Releases](https://github.com/hashiiiii/gh-auto-load-more/releases) page\n2. Extract the ZIP file to a folder on your computer\n3. Open Chrome and navigate to `chrome://extensions/`\n4. Enable \"Developer mode\" by toggling the switch in the top-right corner\n5. Click \"Load unpacked\" and select the extracted folder\n6. The extension should now be installed and active\n\nThat's it! No npm, no build process needed for regular users.\n\n### Alternative: Install from Source (For Developers)\n\nIf you want to modify the extension or contribute to development:\n\n#### Setting up the Development Environment\n\n1. **Install mise (recommended)**:\n   \n   [mise](https://github.com/jdx/mise) is a tool version manager that helps ensure consistent development environments.\n   \n   ```bash\n   # Install mise using the official installer\n   curl https://mise.jdx.dev/install.sh | sh\n\n   # Add mise to your shell\n   eval \"$(~/.local/bin/mise activate zsh)\"  # or bash\n   \n   # Restart your terminal or source your shell configuration\n   source ~/.zshrc  # or source ~/.bashrc\n   ```\n\n2. **Clone the repository**:\n   ```bash\n   git clone https://github.com/hashiiiii/gh-auto-load-more.git\n   cd gh-auto-load-more\n   ```\n\n3. **Install Node.js using mise**:\n   ```bash\n   # mise will read the mise.toml file and install the correct Node.js version\n   mise install\n   \n   # Verify Node.js installation\n   node --version  # Should show the version specified in mise.toml\n   ```\n\n4. **Install dependencies** (important!):\n   ```bash\n   npm install\n   ```\n\n5. **Build the extension**:\n   ```bash\n   npm run build\n   ```\n\n6. **Load the extension in Chrome**:\n   - Open Chrome and navigate to `chrome://extensions/`\n   - Enable \"Developer mode\" by toggling the switch in the top-right corner\n   - Click \"Load unpacked\" and select the `dist` folder from this project\n   - The extension should now be installed and active\n\n#### Troubleshooting\n\n- If you see `tsc: command not found` or similar errors, make sure you've run `npm install` to install TypeScript locally.\n- If Node.js commands aren't using the mise-managed version, try running `eval \"$(~/.local/bin/mise activate zsh)\"` to refresh your environment.\n\n## Usage\n\nOnce installed, the extension works automatically:\n\n1. Navigate to any GitHub Pull Request page\n2. The extension will automatically detect and click all \"Load more...\" buttons\n3. All comments will be expanded without requiring manual clicks\n4. You'll see log messages in the console confirming the extension's activity\n\n## Project Structure\n\n- `src/content.ts` - The main TypeScript file that contains the logic for clicking \"Load more...\" buttons\n- `manifest.json` - Chrome extension manifest file\n- `popup.html` - Simple popup UI for the extension\n- `icons/` - Directory containing extension icons\n- `mise.toml` - Configuration file for mise to manage Node.js version\n\n## Building for Distribution\n\nTo build the extension for distribution:\n\n```bash\nnpm run build\ncd dist \u0026\u0026 zip -r ../github-auto-load-more.zip * \u0026\u0026 cd ..\n```\n\nThe resulting `github-auto-load-more.zip` file can be shared with others for manual installation.\n\n## Privacy\n\nThis extension:\n- Does not collect any user data\n- Does not track browsing activity\n- Only runs on GitHub pull request pages\n- Does not communicate with any external servers\n\n## License\n\n[MIT License](LICENSE.md)\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request. \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhashiiiii%2Fgh-auto-load-more","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhashiiiii%2Fgh-auto-load-more","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhashiiiii%2Fgh-auto-load-more/lists"}