Skip to content

Thinkode/thinkreview-browser-extension

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

38 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

πŸš€ ThinkReview

AI Code Review for GitLab & Azure DevOps

Chrome Web Store Latest Release Rating License: AGPL-3.0

AI-powered code reviews for merge requests and pull requests, directly in your browser.

🌐 Website β€’ πŸ“¦ Install β€’ πŸ“– Docs β€’ πŸ’¬ Contact

ThinkReview - AI Code Review

πŸŽ‰ Now Open Source!

ThinkReview is a production-ready browser extension that brings AI-powered code reviews to GitLab and Azure DevOps. After months of development, we're excited to open source the extension!

🌟 Key Stats

  • ⭐ 5.0/5 rating on Chrome Web Store
  • πŸ“¦ Check latest releases
  • πŸ† Featured by Chrome Web Store
  • βœ… Good Publisher Record with no violations
  • πŸ“œ Follows recommended practices for Chrome extensions

✨ Features

πŸ€– AI-Powered Code Reviews

  • Instant Analysis: Get AI-driven insights on code changes
  • Security Detection: Automatically identify potential vulnerabilities
  • Code Quality: Receive suggestions for improvements
  • Smart Summaries: Quickly understand complex changes
AI Code Review Demo

AI-powered code review in action

πŸ’¬ AI Copilot

  • Chat with PRs: Ask questions about your pull requests
  • Suggested Questions: Get smart, context-aware queries
  • Deep Dive: Explore code changes interactively

πŸ”§ Platform Support

  • βœ… GitLab (gitlab.com, GitLab Enterprise, Self-Hosted)
  • βœ… Azure DevOps (dev.azure.com, custom domains)
  • βœ… Works with any GitLab instance on custom domains
Azure DevOps Integration

Seamless Azure DevOps integration

πŸš€ Zero Setup Required

  • No API Keys: Works out of the box
  • No Configuration: Install and start reviewing
  • Automatic Detection: Recognizes MR/PR pages instantly
  • Seamless Integration: Doesn't disrupt your workflow

🌍 Multilingual Support

  • Reviews in Your Language: Get code reviews in 20+ languages
  • Automatic Language Detection: Adapts to your preferences
Multilingual Support

Code reviews in your preferred language

βš™οΈ Flexible Configuration

  • Custom Domains: Works with self-hosted GitLab instances
  • Azure DevOps PAT: Configure personal access tokens for private repos
  • Team Settings: Customize for your organization's needs
Custom Domain Configuration

Configure custom domains and Azure DevOps tokens

πŸ” Privacy & Security

  • πŸ”’ Secure Authentication: Google OAuth
  • πŸ” HTTPS: All requests encrypted
  • πŸ›‘οΈ No Stored Keys: No API keys in extension code
  • πŸ“Š Minimal Permissions: Only activates on MR/PR pages

πŸ“¦ Installation

From Chrome Web Store (Recommended)

Install from Chrome Web Store

  1. Visit the Chrome Web Store listing
  2. Click "Add to Chrome"
  3. That's it! Navigate to any GitLab MR or Azure DevOps PR to start

For Developers (Load Unpacked)

# Clone the repository
git clone https://github.com/Thinkode/thinkreview-browser-extension.git
cd thinkreview-browser-extension

# Load in Chrome
# 1. Open Chrome and navigate to chrome://extensions/
# 2. Enable "Developer mode" (toggle in top right)
# 3. Click "Load unpacked"
# 4. Select the cloned directory

🎯 Usage

  1. Navigate to any GitLab merge request or Azure DevOps pull request
  2. Wait for automatic detection (usually instant)
  3. View AI-powered code review in integrated panel
  4. Chat with your PR using the AI copilot feature
  5. Review suggestions and security findings

Supported URLs

  • https://gitlab.com/*/merge_requests/*
  • https://your-gitlab-instance.com/*/merge_requests/*
  • https://dev.azure.com/*/*/_git/*/pullrequest/*
  • https://*.visualstudio.com/*/*/_git/*/pullrequest/*

πŸ—οΈ Architecture

ThinkReview consists of two main components:

1. Browser Extension (This Repository)

  • Manifest V3 Chrome extension
  • Content scripts for GitLab & Azure DevOps
  • UI components and integration
  • OAuth authentication flow

2. Backend Services (Proprietary)

  • AI model integration (Google Gemini)
  • Code review processing
  • User management and subscriptions
  • Hosted at us-central1-thinkgpt.cloudfunctions.net

Note: The extension requires connection to ThinkReview backend services. For commercial deployments with your own backend, contact us for licensing options.


πŸ“š Documentation

Project Structure

thinkreview-browser-extension/
β”œβ”€β”€ manifest.json           # Extension configuration
β”œβ”€β”€ background.js           # Service worker
β”œβ”€β”€ content.js             # Main content script
β”œβ”€β”€ popup.html/js/css      # Extension popup
β”œβ”€β”€ components/            # UI components
β”‚   β”œβ”€β”€ integrated-review.js
β”‚   β”œβ”€β”€ google-signin/
β”‚   β”œβ”€β”€ review-prompt/
β”‚   └── subscription.js
β”œβ”€β”€ services/              # Backend integration
β”‚   β”œβ”€β”€ cloud-service.js
β”‚   β”œβ”€β”€ azure-devops-api.js
β”‚   └── platform-detector.js
β”œβ”€β”€ utils/                 # Helper utilities
β”œβ”€β”€ images/               # Icons and assets
└── release-notes/        # Version history

Key Files


πŸ“ˆ Version History

ThinkReview has been in active development with regular releases. Check latest releases for the complete version history.

πŸ“ Full changelog: See release-notes/ directory or visit thinkreview.dev/release-notes


🀝 Contributing

We welcome contributions! ThinkReview is now open source and we'd love your help.

How to Contribute

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Development Setup

# Clone your fork
git clone https://github.com/your-username/thinkreview-browser-extension.git
cd thinkreview-browser-extension

# Install dependencies (if any)
npm install

# Load extension in Chrome (see Installation section above)

Guidelines

  • Follow existing code style
  • Add tests for new features
  • Update documentation
  • Keep commits atomic and well-described

See CONTRIBUTING.md for detailed guidelines.


πŸ› Issues & Support

Found a Bug?

Open an issue with:

  • Description of the bug
  • Steps to reproduce
  • Expected vs actual behavior
  • Screenshots (if applicable)
  • Browser version and OS

Need Help?


πŸ“œ License

This project is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).

What This Means

βœ… You can:

  • Use the extension freely
  • Study and modify the code
  • Distribute your modifications
  • Use it commercially

⚠️ You must:

  • Share your modifications under AGPL-3.0
  • Disclose source code when distributing
  • Include license and copyright notice
  • State significant changes made

Commercial Licensing

For commercial deployments with your own backend or proprietary modifications:

See LICENSE for full details.


πŸ”— Links


🌟 Why Open Source?

After successfully launching on the Chrome Web Store and serving 128+ users, we decided to open source ThinkReview because:

βœ… Transparency - Let the community see and verify how it works
βœ… Trust - Open code builds confidence in security and privacy
βœ… Collaboration - Accelerate development with community contributions
βœ… Innovation - Enable developers to extend and customize
βœ… Education - Help others learn from production-grade code


πŸ’Ό About

ThinkReview is developed and maintained by the Thinkode team. The extension is production-ready and actively used by developers worldwide for improving code quality and accelerating code reviews.

Built with:

  • Manifest V3
  • Google Gemini AI
  • Vanilla JavaScript
  • Chrome Extensions API

⭐ Show Your Support

If ThinkReview helps you with code reviews, please:

  • ⭐ Star this repository
  • πŸ”„ Share with your team
  • ✍️ Leave a review on Chrome Web Store
  • πŸ› Report bugs and suggest features

Made with ❀️ by the Thinkode Team

Website β€’ Chrome Store β€’ Support

About

AI-powered code reviews for GitLab & Azure DevOps. Zero setup. Powered by Gemini.

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Packages

No packages published