A terminal-based application for managing multiple Chromium/Chrome browser profiles with different settings, proxies, and configurations. This tool helps you maintain separate browsing environments for different purposes.
Primary purpose and inspiration was to regain similar functionality to the NCC Group's autochrome tool (https://github.com/nccgroup/autochrome).
- Multiple Profile Support: Create and manage separate browser profiles
- Proxy Configurations: Set different proxy settings for each profile
- Custom Flags: Configure browser launch flags for each profile
- Profile Cleaning: Reset profiles to a clean state
- GPU Artifact Suppression: Eliminate visual glitches with optimized settings
- API Warning Suppression: Remove annoying Google API key warnings
- Terminal UI: Beautiful, keyboard-driven interface
- Chromium Management: Download/manage and use different versions of chromium
- Extension Management: Download/manage extensions for use in different profiles
- Go 1.16 or later
- Chromium or Google Chrome browser
- Clone the repository:
git clone https://github.com/mlinton/launchium.git
cd launchium- Install dependencies:
go mod tidy- Build the application:
go build -o launchium- (Optional) Install to your system:
sudo mv launchium /usr/local/bin/./launchium- Use arrow keys to navigate menus
- Press Enter to select an option
- Press Esc to go back
- Press Ctrl+C to quit
- Launch Browser: Start Chromium/Chrome with a selected profile
- Manage Profiles:
- Add New Profile: Create a new browser profile
- Edit Profile: Modify settings for an existing profile
- Delete Profile: Remove a profile
- Clean Profile: Reset a profile to a clean state
- Quit: Exit the application
Each profile has the following settings:
- Name: Unique identifier for the profile
- Proxy: Server address and port (or "none" for direct connection)
- Proxy Type: Connection type (http, socks5, or none)
- Flags: Custom command-line flags for Chromium/Chrome
Two profiles are created by default:
- default: Standard profile with minimal settings
- clean: Profile with enhanced GPU artifact suppression
Profiles are stored in ~/.chrome_profiles/:
- Profile definitions:
~/.chrome_profiles/profiles.conf - Profile data:
~/.chrome_profiles/<profile-name>/
To set up a proxy, edit a profile and specify:
- Proxy address (e.g., "127.0.0.1:8080" or "none")
- Proxy type ("http", "socks5", or "none")
Example for Tor proxy:
- Proxy: "127.0.0.1:9050"
- Type: "socks5"
Common useful flags:
--incognito: Start in incognito mode--disable-features=...: Disable specific Chrome features--enable-features=...: Enable specific Chrome features--disable-extensions: Run without extensions
If the browser doesn't launch:
- Verify the browser path is correct
- Check if your profile directory exists and has proper permissions
- Try cleaning the profile and launching again
If you see graphics glitches:
- Edit the profile
- Add the following flags:
--disable-gpu --disable-gpu-compositing - Save and launch again
This project is licensed under the MIT License - see the LICENSE file for details.
- Built with Bubble Tea for terminal UI
- Inspired by the need for better browser profile management
