A browser extension to take back control of your YouTube experience by customizing the UI and blocking distracting features.
- Hide Home Feed
- Remove Mixes Playlists
- Hide Shorts
- Hide Recommended Videos
- Disable Comments
- Disable Autoplay
- Download and extract the .zip from releases.
- Go to
chrome://extensionsin Chrome. - Enable Developer mode.
- Click Load unpacked and select this project folder, or drag and the drop the folder onto the extension page.
- The extension will be active and show a popup when clicked.
You can automate loading the extension using Chrome's remote debugging and VS Code's launch.json. See below for a sample configuration:
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome", //or msedge
"request": "launch",
"name": "Debug Chrome Extension",
"url": "https://www.youtube.com",
"webRoot": "${workspaceFolder}",
"runtimeArgs": [
"--load-extension=${workspaceFolder}"
]
}
]
}
Place this in .vscode/launch.json and use the "Debug Chrome Extension" configuration to launch Chrome with the extension loaded.