# browser-workshop **Repository Path**: hyjiacan/browser-workshop ## Basic Information - **Project Name**: browser-workshop - **Description**: 多版本浏览器管理工具,支持本地导入、远程下载、版本切换、隔离运行。 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: https://hyjiacan.github.io/browser-workshop/ - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-07-20 - **Last Updated**: 2026-08-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Browser Workshop
Multi-version browser management tool, supporting local import, remote download, version switching, and isolated execution.
## Features - **Multi-version Management**: Install and manage multiple browser versions simultaneously, with quick filtering by version prefix - **Local Import**: Automatically detect and import from directories or archives, supporting zip, 7z, tar.gz, tar.bz2, tar.xz, exe, and more - **Remote Download**: Download specified versions from official sources (Firefox via Mozilla FTP) - **Offline Distribution**: Built-in `serve` command with auto-sync support, set up a LAN distribution service - **Isolated Execution**: Independent profile for each version, with support for named profiles - **Plugin System**: Lua script plugins and standalone process plugins, automatically modify launch arguments, inject configs, and execute custom logic - **Proxy Support**: Global proxy configuration covering downloads and browser launch, supporting HTTP/SOCKS5 protocols - **Fingerprint Isolation**: `--fingerprint` presets (standard/random) to reduce browser fingerprint tracking - **Internationalization**: Built-in Chinese and English, with external translation file override support - **Portable Mode**: Data stored in the `bws-data/` subdirectory, carry it on a USB drive - **Browser Short Aliases**: `gc` (chrome), `ff` (firefox), `cm` (chromium) - **HTTPS Compatible**: Skip certificate verification by default, adapted for intranet/self-signed certificate environments ## Quick Start ```bash # View installed versions bws ls bws ls gc@79 # Use short alias + version prefix filter # Batch import from a local directory bws import /path/to/browsers # Remote download and install bws install chrome@120 # Chrome historical versions need to be manually downloaded before importing # Download address: https://chromedownloads.net/ bws install --from-file chrome-120-win64.zip chrome@120 # Run the browser bws run chrome@120 bws run gc@120 -i # Incognito mode ``` ## Documentation For full documentation, please visit: **[Browser Workshop Documentation](https://hyjiacan.github.io/browser-workshop)** - [Getting Started](https://hyjiacan.github.io/browser-workshop/guide/getting-started) - [Commands Reference](https://hyjiacan.github.io/browser-workshop/guide/commands) - [Serve Service](https://hyjiacan.github.io/browser-workshop/guide/serve) - [Browser Short Aliases](https://hyjiacan.github.io/browser-workshop/guide/short-aliases) ## Installation ```bash go install github.com/hyjiacan/browser-workshop/cmd/bws@latest ``` Or download precompiled binaries from [Releases](https://github.com/hyjiacan/browser-workshop/releases). Users in China can also install via Gitee: ```bash go install gitee.com/hyjiacan/browser-workshop/cmd/bws@latest ``` ## Command Overview | Command | Description | |---------|-------------| | `bws ls` / `bws list` | List installed browser versions | | `bws ls -R` | List remote available versions | | `bws run