A Chrome extension that allows you to boost the volume of any video in your browser tab up to 600%. Perfect for videos with low audio levels.
- Boost volume up to 600% (6x the normal volume)
- Easy-to-use slider interface
- Works on any website with video content
- Instant volume adjustment
- Quick reset to 100% button
- Dark mode UI
- Download the latest release from the Releases page
- Extract the downloaded ZIP file to a folder on your computer
- Load the extension in Chrome:
- Open Chrome and navigate to
chrome://extensions/ - Enable "Developer mode" in the top right corner
- Click "Load unpacked"
- Select the extracted folder
- Open Chrome and navigate to
-
Clone this repository:
git clone https://github.com/r4ultv/volume-booster.git cd volume-booster -
Install dependencies:
npm install
-
Build the extension:
npm run build
-
Load the extension in Chrome:
- Open Chrome and navigate to
chrome://extensions/ - Enable "Developer mode" in the top right
- Click "Load unpacked"
- Select the
buildfolder from this project
- Open Chrome and navigate to
- Navigate to any webpage with a video
- Click the Volume Booster extension icon in your Chrome toolbar
- Use the slider to adjust the volume:
- Left side (0-50%): Reduces volume from 0% to 100%
- Right side (50-100%): Boosts volume from 100% to 600%
- Click "Reset Volume to 100% volume" to return to normal volume
- Node.js (v14 or higher)
- npm or yarn
npm start- Run the app in development modenpm run build- Build the extension for productionnpm test- Run testsnpm run eject- Eject from Create React App (use with caution)
- React 18
- Tailwind CSS
- Chrome Extension Manifest V3
- Create React App
The extension uses Chrome's scripting API to inject code into the active tab and modify the volume property of HTML5 video elements. The slider uses a non-linear scale:
- 0-50% slider position: Maps to 0-100% actual volume
- 50-100% slider position: Maps to 100-600% actual volume
This allows for precise control at normal listening levels while still providing significant boost capability.
The extension requires the following permissions:
activeTab- To access the current tab's contentscripting- To inject volume control codestorage- To save user preferences (future feature)
Contributions are welcome! Please feel free to submit a Pull Request.
This project is open source and available under the MIT License.
Built with Create React App and styled with Tailwind CSS.