Open atomGit opened 5 years ago
Thanks for suggestion!
I've tried Youtube Feeds from the article you mentioned, and it seems to work fine with extension. There red icon appears in url bar and on click my extension's show page opens (thought I see a bug, once in ten times standard page appears :/ ).
As for supporting these popular websites, I think it's very unrewarding and time consuming pastime. Something will be always broken, because I can't put my eyes on every website. This is sad state of the web where big corporations decide to lock in their users and not contribute to open data standards.
I think external extension can be made. Everything needed is to append <link rel="alternate" type="{feed type}" title="{feed title}" href="{feed src}" />
to the head
tag on the site from a list, my extension then do the job. But there must be a group of enthusiasts which will take care of their personal part of websites which they visit often.
I think external extension can be made. Everything needed is to append ...
what about adding a custom URL format option where users could add their own rules (using variables) to pick up these feeds? i think that might be a great way to go whilst not requiring a lot of additional coding on your part maybe ???
so WMR segments the URL and assigns variables to the parts which allow the user to create a feed URL - example...
https://www.youtube.com/channel/UCs84giQmEVI8NXXg78Fvk2g
WMR does this...
https://www.youtube.com/{part-a}/{part-b}
user then creates the feed URL...
feeds/videos.xml?channel_id={part-b}
which WMR uses to load the full URL...
https://www.youtube.com/feeds/videos.xml?channel_id=UCs84giQmEVI8NXXg78Fvk2g
Such things can't be done with some predefined blocks, and require basic coding skills.
meta
from head
tag, and concatenate it with part of url, or even more, via ajax call). It's not area of current extension to handle such things as it just will bloat the extension.If you really need you are already able to install Tampermonkey or some userscript extension, somehow obtain feed link and append it to head. For youtube you can use Youtube Feeds :-)
thanks for the explanation
Not that I'm completely against, need to think about it. It just not that easy peasy :-)
understood - my reason for the request is to have a single-add-on that handles all feeds (to the extent that's doable) - i don't like installing more than i have to :)
sorry, don't mean to be a PITA and maybe this is useless, but i had another thought...
wadif somebody somewhere (mainly you, here :heart: ) kept a simple redirect "rules" file that other's can contrib to in order to lighten your load so WMR doesn't have to do any fancy url parsing shenanigans internally - example rules/redirect file:
www.youtube.com/channel/([a-z0-9]+) www.youtube.com/feeds/videos.xml?channel_id=$1
so WMR reads the rules file and thus recognizes when www.youtube.com/channel/
is loaded, process the RegEx strictly according to the rules file, then displays its icon, ready for the user to click
no new permissions needed i think? and no messing with url's - just have to add code to process the expressions maybe and add the result(s) to whatever WMR normally finds, if anything
i'll stop bothering you now :)
I'm thinking basic rewrite rules will not last, as sometimes feed link consists not only of original url parts, and if I'll add such solution, eventually I'll have to change this rules option, thus, break backward compatibility, so, this is why I don't like this approach.
there was an excellent add-on i was using to detect feeds that is no longer available and so i'd like to re-address this issue
I'm thinking basic rewrite rules will not last, as sometimes feed link consists not only of original url parts, and if I'll add such solution, eventually I'll have to change this rules option, ...
i've not ever seen that happen in quite a few years for any site which provides feeds, but doesn't advertise them
How to access RSS feeds for websites that don't advertise one - 12bytes.org
here's the code the other dev was using to detect feeds - he made a default file available on his github repo, but the user could add/remove/edit the code right from the extension
wow, this is a very nice extension! but (and there's always a "but", tight?) it doesn't support feeds for some very popular websites, such as YouTube, BitChute, Vimeo
feeds for all of these platforms can be built statically by reformatting the URL - please see...
How to access RSS feeds for websites that don’t advertise one