Custom Chromium Browser for Windows
Budget: $30 – $250 USD
I'm seeking a modified Chromium browser windows installer file & source code. This needs to allow for a maximum of 500 WebSocket connections per domain.
Key Requirements:
- Compatibility: The modified Chromium browser must be compatible with Windows OS.
- Version: The modifications should be made on the stable release of the Chromium browser.
- Custom Default Settings: The browser should come with custom default settings. No additional features or extensions are needed.
Ideal Skills:
- Proficiency in modifying Chromium browser.
- Experience with Windows software development.
- Understanding of WebSocket connections and networking.
- Ability to set custom default settings in software.
Here are steps to build: https://chromium.googlesource.com/chromium/src/+/HEAD/docs/windows_build_instructions.md
Update WebSocket-Specific Limits in several files as below:
Look for WebSocket-specific limits in:
net/websockets/websocket_channel.cc
services/network/websocket.cc
Modify any hardcoded limits or configuration values.
Example:
const int kMaxConcurrentConnections = 6;
Change it to:
const int kMaxConcurrentConnections = 500;
Thanks
Key Requirements:
- Compatibility: The modified Chromium browser must be compatible with Windows OS.
- Version: The modifications should be made on the stable release of the Chromium browser.
- Custom Default Settings: The browser should come with custom default settings. No additional features or extensions are needed.
Ideal Skills:
- Proficiency in modifying Chromium browser.
- Experience with Windows software development.
- Understanding of WebSocket connections and networking.
- Ability to set custom default settings in software.
Here are steps to build: https://chromium.googlesource.com/chromium/src/+/HEAD/docs/windows_build_instructions.md
Update WebSocket-Specific Limits in several files as below:
Look for WebSocket-specific limits in:
net/websockets/websocket_channel.cc
services/network/websocket.cc
Modify any hardcoded limits or configuration values.
Example:
const int kMaxConcurrentConnections = 6;
Change it to:
const int kMaxConcurrentConnections = 500;
Thanks