-
Notifications
You must be signed in to change notification settings - Fork 0
About
Daniel Harton edited this page Aug 26, 2026
·
1 revision
Modern websites often come with a variety of user experience friction points:
- Autoplaying videos on hover (which can be distracting or consume unnecessary bandwidth).
- Annoying cookie consent pop-ups that interrupt the reading experience.
- Unwanted auto-dubbing features on video platforms.
- Repetitive clicks required to access "more options" or dismiss settings.
This repository was created to solve these exact problems. It is a collection of Userscripts, small snippets of JavaScript that run in the context of web pages, designed to seamlessly tweak, modify, and improve the behavior of popular websites.
The scripts in this repository follow a few core principles:
- Lightweight: Minimal performance impact. Code should execute quickly and avoid memory leaks.
- Reliable: Websites change frequently, especially Single Page Applications (SPAs). Scripts should be built robustly to handle dynamic DOM mutations without breaking.
- Focused: Each script aims to do exactly one thing well, whether it's disabling an autoplay feature or auto-rejecting cookies.
By utilizing userscript managers (like Violentmonkey or Tampermonkey), users can take back control of their web browsing experience.