mirror of
https://github.com/lawrencehook/remove-youtube-suggestions.git
synced 2026-07-25 06:54:31 +00:00
349ce0523e
Add Safari Web Extension support with: - safari_manifest.json for Safari Manifest v3 - make_safari.sh build script using safari-web-extension-converter - BrowserDetect utility for runtime browser detection - SAFARI.md with detailed build and distribution docs - Updated README with Safari instructions - Updated .gitignore for Xcode artifacts https://claude.ai/code/session_01MSpqozazmv9Kaiw9x8kA9M
58 lines
2.2 KiB
Markdown
58 lines
2.2 KiB
Markdown
# RYS — Remove YouTube Suggestions
|
|
#### A Browser Extension
|
|
|
|
---
|
|
|
|
### What it does
|
|
This extension aims to make YouTube less engaging and more configurable. It provides options to hide recommended videos and to customize the user interface.
|
|
|
|
---
|
|
|
|
### Feedback and Support
|
|
Leave a review!
|
|
- [Firefox](https://addons.mozilla.org/en-US/firefox/addon/remove-youtube-s-suggestions)
|
|
- [Chrome](https://chrome.google.com/webstore/detail/remove-youtube-suggestion/cdhdichomdnlaadbndgmagohccgpejae)
|
|
- Safari (coming soon to the Mac App Store)
|
|
- [Google Form](https://docs.google.com/forms/d/1AzQQxTWgG6M5N87jinvXKQkGS6Mehzg19XV4mjteTK0/edit)
|
|
|
|
Completely free. Donations welcome — [Paypal](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FF9K9YD6K6SWG¤cy_code=USD&source=url)
|
|
|
|
---
|
|
|
|
### Why I made it
|
|
Motivated by an attempt to stymie the YouTube rabbit hole.
|
|
|
|
The YouTube recommendation algorithm optimizes for the most _engaging_ videos, regardless of whether or not you are interested. Persistent exposure to these suggestions can result in a waste of your time. Download this add-on and remove unwanted suggestions as you please.
|
|
|
|
Available for download at the links below:
|
|
- [Firefox](https://addons.mozilla.org/en-US/firefox/addon/remove-youtube-s-suggestions)
|
|
- [Chrome](https://chrome.google.com/webstore/detail/remove-youtube-suggestion/cdhdichomdnlaadbndgmagohccgpejae)
|
|
- Safari (coming soon to the Mac App Store)
|
|
|
|
---
|
|
|
|
### Development
|
|
This project is 100% open source. Created and maintained by me, [Lawrence Hook](https://lawrencehook.com).
|
|
|
|
Have a feature request or found a bug? Feel free to create a Github issue, submit a PR, or contact me at lawrencehook@gmail.com.
|
|
|
|
The following commands will set up a Firefox dev environment.
|
|
|
|
```bash
|
|
git clone https://github.com/lawrencehook/remove-youtube-suggestions.git
|
|
cd remove-youtube-suggestions/src
|
|
npm install --global web-ext
|
|
cp firefox_manifest.json manifest.json
|
|
web-ext run
|
|
```
|
|
|
|
For Safari development (requires macOS with Xcode):
|
|
|
|
```bash
|
|
git clone https://github.com/lawrencehook/remove-youtube-suggestions.git
|
|
cd remove-youtube-suggestions
|
|
./make_safari.sh
|
|
```
|
|
|
|
See [SAFARI.md](SAFARI.md) for detailed Safari build and distribution instructions.
|