YouTube Alternative frontends

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

Автор
Zakaria-ouertani
Щоденних встановлень
0
Всього встановлень
73
Рейтинги
0 0 0
Версія
1.1
Створено
21.10.2023
Оновлено
01.12.2023
Size
1,5 кБ
Ліцензія
GPLv3
Відноситься до

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