How to import all RSS feeds from Opera?
-
nerverean last edited by leocg
Hello,
I use Opera with built in RSS reader. I want to import my RSS feeds in another reader.
Question - Where can I find all my RSS feeds URLs? Or how to import them? I have more than 50 feeds. -
burnout426 Volunteer last edited by
Goto the URL
opera://about
and take note of the "profile" path. Then, close Opera and open the "Preferences" file in the profile folder with JSONedit in tree mode. Under "root/personal_news", you'll see a "subscribedCustomSourceUrls" array which lists each feed URL.You'll have to grab those URLs and in a text editor, make an opera-newsfeed.opml file like this:
<?xml version="1.0" encoding="utf-8"?> <opml version="1.0"> <head> <title>Newsfeeds exported from Opera</title> </head> <body> <outline text="Opera Desktop" title="Opera Desktop" type="rss" xmlUrl="https://blogs.opera.com/desktop/feed/" /> <outline text="Vivaldi Browser" title="Vivaldi Browser" type="rss" xmlUrl="https://vivaldi.com/feed/" /> </body> </opml>
Then, you can import that opml file in whatever feed reader you want.
-