YouTube Alternative frontends

10/21/2023, 2:15:40 PM

Author
Zakaria-ouertani
Daily installs
0
Total installs
56
Ratings
0 0 0
Version
1.1
Created
2023-10-21
Updated
2023-12-01
License
GPLv3
Applies to

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]
];