-
Notifications
You must be signed in to change notification settings - Fork 47
Description
please consider adding the following - these templates seem to be very stable in that they rarely change, so all that is needed is to grab the channel name (similar to what you did with youtube i assume)
BitChute: https://www.bitchute.com/feeds/rss/channel/<channel_name>
Gab TV: https://tv.gab.com/channel/<channel_name>/feed/rss
Vimeo: https://vimeo.com/<channel_name>/videos/rss
for youtube i assume you're looking at the DOM? if so, this highlights an interesting possibility; rather than hard-coding feed detection for sites that don't advertise feed URLs, it would be really great if the user could provide a URL and RegEx pattern that your extension could then use
for example, for bitchute, the user could provide something like...
https://www.bitchute.com/feeds/rss/channel/%<a href="\/channel\/([a-z0-9]+)\/"%
then the extension slaps the pieces together by using the expression between the % chars
perhaps better yet, these patters could be submitted to the repo by users and added to a text file which the extensions then downloads (rather than having to update the extension)