YouTube Alternative frontends
A Script that adds buttons next to the subscribe button that send you to various youtube frontends since youtube won't work with an adblocker on chromium browsers.
You can easily add your own like the example below
This is the original list:
[
["Piped", "https://piped.video/watch?v=" + videoId],
["Invidious", "https://invidious.flokinet.to/watch?v=" + videoId]
];
For example u have front end called foo with its link being foo.bar
You add it to the list so it becomes like this:
[
["Piped", "https://piped.video/watch?v=" + videoId],
["Invidious", "https://invidious.flokinet.to/watch?v=" + videoId],
["foo", "https://foo.bar/watch?v=" + videoId]
];