YouTube Alternative frontends

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

Yazar
Zakaria-ouertani
Günlük kurulumlar
0
Toplam kurulumlar
73
Değerlendirmeler
0 0 0
Versiyon
1.1
Oluşturulma
21.10.2023
Güncellenme
01.12.2023
Size
1,53 KB
Lisans
GPLv3
Geçerli

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