如何批量导入博客Rss Feeds列表到Feedly

 很意外,Feedly还没有死,在我用我的Google账号登陆后,曾经的订阅目录展现在我的面前,甚是怀念。可惜,那些订阅大都已经不再更新了。我把曾经订阅的女性写作者的目录名“绸缎沙龙”修改为“古早不更”,把男性写作者的目录名“蔚然成风”改为“尸体暖暖”,后者之所以还暖,是因为还有零星更新者。

我在Github上看到有帖子将许多中文独立博客的地址和Rss Feeds做成列表,便想要导入到Feedly慢慢看。一开始我一个一个导入,效率非常低,随后我询问了Deepseek,再根据自己能力所及,“傻瓜式”完成了操作,非常感谢AI的帮助,在这里我介绍一下我的做法。

一、我发现了这样一份中文独立博客列表,它的完整版可以访问这个帖子


二、将列表复制粘贴到Excel,编辑表格,只保留Feed一列。

三、使用Excel的宏命令将这份列表中的Rss Feeds批量提取出来,具体步骤如下:打开Excel的VBA编辑器(按下“Alt + F11”)。

在“项目浏览器”中,右键插入一个“模块”。

粘贴以下VBA代码:

<VB>

Sub ExtractHyperlinks()

    Dim ws As Worksheet

    Set ws = ActiveSheet

    

    Dim cell As Range

    For Each cell In ws.UsedRange

        If cell.Hyperlinks.Count > 0 Then

            cell.Offset(0, 1).Value = cell.Hyperlinks(1).Address

        End If

    Next cell

End Sub

按下“F5”运行宏。

超链接地址将被提取到每个含有超链接单元格的右侧单元格中。

效果如下:



四、将这份清单复制粘贴给Deepseek,让它帮你转换成一份OPML文件内容,再将它提供给你的内容保存为一个.opml文件备用。如果你对我的这份清单感兴趣,可以在文章结尾处直接获取这份文件。

五、打开https://feedly.com/i/cortex,见到如下页面:

点击Choose OPML FILE,将刚才准备好的文件导入即可见feedly将你需要看的博客被有序订阅中。

至此,你已经成功批量导入博客Rss Feeds列表到Feedly中了!

-完-

附录:opml文件内容:

xml
Copy
<?xml version="1.0" encoding="UTF-8"?>
<opml version="2.0">
  <head>
    <title>My RSS Feeds</title>
  </head>
  <body>
    <outline text="Blog T9T" type="rss" xmlUrl="https://blog.t9t.io/atom.xml"/>
    <outline text="Ruanyifeng's Blog" type="rss" xmlUrl="http://feeds.feedburner.com/ruanyifeng"/>
    <outline text="CoolShell" type="rss" xmlUrl="http://coolshell.cn/feed"/>
    <outline text="Zhang Xinxu's Blog" type="rss" xmlUrl="http://www.zhangxinxu.com/wordpress/?feed=rss2"/>
    <outline text="Alili Tech" type="rss" xmlUrl="https://alili.tech/index.xml"/>
    <outline text="Xia Bingbao's Blog" type="rss" xmlUrl="https://www.xiabingbao.com/atom.xml"/>
    <outline text="Diygod's Blog" type="rss" xmlUrl="https://diygod.me/atom.xml"/>
    <outline text="Macshuo" type="rss" xmlUrl="http://macshuo.com/?feed=rss2"/>
    <outline text="Shrekshao's Blog" type="rss" xmlUrl="http://shrekshao.github.io/feed.xml"/>
    <outline text="Coding Now" type="rss" xmlUrl="http://blog.codingnow.com/atom.xml"/>
    <outline text="Reorx's Blog" type="rss" xmlUrl="https://reorx.com/feed.xml"/>
    <outline text="Zddhub's Blog" type="rss" xmlUrl="https://zddhub.com/feed"/>
    <outline text="Phodal's Blog" type="rss" xmlUrl="https://www.phodal.com/blog/feeds/rss/"/>
    <outline text="Zlovezl's Blog" type="rss" xmlUrl="https://www.zlovezl.cn/feeds/latest/"/>
    <outline text="Windard's Blog" type="rss" xmlUrl="https://windard.com/feed.xml"/>
    <outline text="Li Chong's Blog" type="rss" xmlUrl="https://www.lichong.work/atom.xml"/>
    <outline text="Luolei's Blog" type="rss" xmlUrl="http://luolei.org/feed/"/>
    <outline text="Dfine Tech" type="rss" xmlUrl="https://dfine.tech/atom.xml"/>
    <outline text="Daimajia's Blog" type="rss" xmlUrl="https://daimajia.com/feed"/>
    <outline text="Kymjs's Blog" type="rss" xmlUrl="https://www.kymjs.com/feed.xml"/>
    <outline text="Droidyue's Blog" type="rss" xmlUrl="https://droidyue.com/atom.xml"/>
    <outline text="Vzardlloo's Blog" type="rss" xmlUrl="https://vzardlloo.github.io/atom.xml"/>
    <outline text="Rowkey's Blog" type="rss" xmlUrl="https://rowkey.cn/atom.xml"/>
    <outline text="Lilydjwg's Blog" type="rss" xmlUrl="https://blog.lilydjwg.me/posts.rss"/>
    <outline text="Hundren's Blog" type="rss" xmlUrl="https://hundren.github.io/atom.xml"/>
    <outline text="Xiuer's Blog" type="rss" xmlUrl="https://xiuer.medium.com/feed"/>
    <outline text="Armin Li's Blog" type="rss" xmlUrl="https://arminli.com/rss.xml"/>
    <outline text="Hintsnet" type="rss" xmlUrl="https://hintsnet.com/pimgeek/feed/"/>
    <outline text="Toweave's Blog" type="rss" xmlUrl="https://toweave.github.io/rss.xml"/>
    <outline text="Ghost Mout" type="rss" xmlUrl="https://ghost.mout.me/rss/"/>
    <outline text="Dumplingbao's Blog" type="rss" xmlUrl="https://dumplingbao.github.io/atom.xml"/>
    <outline text="Greatdk's Blog" type="rss" xmlUrl="https://greatdk.com/feed"/>
    <outline text="Chai2010's Blog" type="rss" xmlUrl="https://chai2010.cn/index.xml"/>
    <outline text="Cnfeat's Blog" type="rss" xmlUrl="https://www.cnfeat.com/feed.xml"/>
    <outline text="Jimmy Song's Blog" type="rss" xmlUrl="https://jimmysong.io/index.xml"/>
    <outline text="Hawstein's Blog" type="rss" xmlUrl="http://hawstein.com/feed.xml"/>
    <outline text="Skywind's Blog" type="rss" xmlUrl="http://www.skywind.me/blog/feed"/>
    <outline text="Shuizilong's Blog" type="rss" xmlUrl="http://www.shuizilong.com/house/feed/"/>
    <outline text="Chenshake's Blog" type="rss" xmlUrl="http://www.chenshake.com/feed/"/>
    <outline text="Cat Chen's Blog" type="rss" xmlUrl="http://chinese.catchen.me/feeds/posts/default"/>
    <outline text="Lutaonan's Blog" type="rss" xmlUrl="https://lutaonan.com/rss.xml"/>
    <outline text="Xiaozhou's Blog" type="rss" xmlUrl="https://xiaozhou.net/atom.xml"/>
    <outline text="Ideawu's Blog" type="rss" xmlUrl="http://www.ideawu.net/blog/feed"/>
    <outline text="Xiaix's Blog" type="rss" xmlUrl="http://xiaix.me/rss/"/>
    <outline text="Teddy Chen's Blog" type="rss" xmlUrl="http://teddy-chen-tw.blogspot.com/feeds/posts/default"/>
    <outline text="The Will Will Web" type="rss" xmlUrl="https://feeds.feedburner.com/TheWillWillWeb"/>
    <outline text="Techug" type="rss" xmlUrl="http://www.techug.com/feed"/>
    <outline text="Jdon" type="rss" xmlUrl="https://www.jdon.com/jivejdon/rss"/>
    <outline text="Barret Lee's Blog" type="rss" xmlUrl="https://www.barretlee.com/rss2.xml"/>
    <outline text="Jeff Jade's Blog" type="rss" xmlUrl="https://www.jeffjade.com/atom.xml"/>
    <outline text="Immmmm's Blog" type="rss" xmlUrl="http://feed.immmmm.com/"/>
    <outline text="Wsgzao's Blog" type="rss" xmlUrl="https://wsgzao.github.io/atom.xml"/>
    <outline text="The5fire's Blog" type="rss" xmlUrl="http://www.the5fire.com/rss"/>
    <outline text="Hfdavidyu's Blog" type="rss" xmlUrl="https://hfdavidyu.com/feed/"/>
    <outline text="Mercury Chong's Blog" type="rss" xmlUrl="http://mercurychong.blogspot.com/feeds/posts/default"/>
    <outline text="Pmmustknow" type="rss" xmlUrl="http://feeds.feedburner.com/pmmustknow"/>
    <outline text="Iamsujie's Blog" type="rss" xmlUrl="http://iamsujie.com/feed/"/>
    <outline text="Blog Turn" type="rss" xmlUrl="http://blog.turn.tw/?feed=rss2"/>
    <outline text="Yuguo's Blog" type="rss" xmlUrl="http://feeds.feedburner.com/yuguo"/>
    <outline text="Othree's Blog" type="rss" xmlUrl="https://feeds.feedburner.com/othree"/>
    <outline text="Vivaxy's Blog" type="rss" xmlUrl="https://vivaxyblog.github.io/atom.xml"/>
    <outline text="Debuginn" type="rss" xmlUrl="https://blog.debuginn.com/index.xml"/>
    <outline text="Isaced's Blog" type="rss" xmlUrl="http://www.isaced.com/index.xml"/>
    <outline text="Atjason's Blog" type="rss" xmlUrl="https://atjason.com/atom.xml"/>
    <outline text="Forecho's Blog" type="rss" xmlUrl="https://blog.forecho.com/atom.xml"/>
    <outline text="Jack Liu's Blog" type="rss" xmlUrl="https://www.jack-liu.com/rss.php"/>
    <outline text="Geekplux" type="rss" xmlUrl="https://geekplux.com/atom.xml"/>
    <outline text="Jysperm's Blog" type="rss" xmlUrl="https://jysperm.me/atom.xml"/>
    <outline text="Wang Yin's Blog" type="rss" xmlUrl="https://rsshub.app/blogs/wangyin"/>
    <outline text="Weiwuhui's Blog" type="rss" xmlUrl="http://weiwuhui.com/feed"/>
    <outline text="Yxwang's Blog" type="rss" xmlUrl="https://blog.yxwang.me/index.xml"/>
    <outline text="Luke Fan's Blog" type="rss" xmlUrl="http://lukefan.com/?feed=rss2"/>
    <outline text="Xiayf's Blog" type="rss" xmlUrl="http://blog.xiayf.cn/feeds/rss.xml"/>
    <outline text="Hufangyun's Blog" type="rss" xmlUrl="https://hufangyun.com/atom.xml"/>
    <outline text="Jiongks's Blog" type="rss" xmlUrl="https://jiongks.name/atom.xml"/>
    <outline text="Btorange's Blog" type="rss" xmlUrl="http://www.btorange.com/feed"/>
    <outline text="Fengtang's Blog" type="rss" xmlUrl="http://www.fengtang.com/blog/?feed=rss2"/>
    <outline text="Livid's Blog" type="rss" xmlUrl="https://livid.v2ex.com/feed.xml"/>
    <outline text="Imhanjm's Blog" type="rss" xmlUrl="https://www.imhanjm.com/atom.xml"/>
    <outline text="Kingname's Blog" type="rss" xmlUrl="https://www.kingname.info/atom.xml"/>
    <outline text="Seo G2soft" type="rss" xmlUrl="https://seo.g2soft.net/atom.xml"/>
    <outline text="Igaojin's Blog" type="rss" xmlUrl="https://igaojin.me/atom.xml"/>
    <outline text="Keelii's Blog" type="rss" xmlUrl="https://keelii.com/atom.xml"/>
    <outline text="Xilidou's Blog" type="rss" xmlUrl="https://xilidou.com/atom.xml"/>
    <outline text="Kuricat's Blog" type="rss" xmlUrl="https://kuricat.com/rss"/>
    <outline text="H-cheung's Blog" type="rss" xmlUrl="https://h-cheung.gitlab.io/index.xml"/>
    <outline text="Tingtalk's Blog" type="rss" xmlUrl="https://tingtalk.me/atom.xml"/>
    <outline text="Charles Liuyx's Blog" type="rss" xmlUrl="https://charlesliuyx.github.io/atom.xml"/>
    <outline text="Zkqiang's Blog" type="rss" xmlUrl="https://zkqiang.cn/atom.xml"/>
    <outline text="Xulihang's Blog" type="rss" xmlUrl="https://blog.xulihang.me/feed/"/>
    <outline text="Hiwannz's Blog" type="rss" xmlUrl="https://hiwannz.com/feed"/>
    <outline text="102no's Blog" type="rss" xmlUrl="https://102no.com/atom.xml"/>
    <outline text="Mebtte's Blog" type="rss" xmlUrl="https://mebtte.com/rss.xml"/>
    <outline text="Joouis's Blog" type="rss" xmlUrl="https://blog.joouis.com/atom.xml"/>
    <outline text="Devashen's Blog" type="rss" xmlUrl="https://www.devashen.com/atom.xml"/>
    <outline text="Hanschen's Blog" type="rss" xmlUrl="http://blog.hanschen.site/atom.xml"/>
    <outline text="Iphysresearch's Blog" type="rss" xmlUrl="https://iphysresearch.github.io/blog/post/index.xml"/>
    <outline text="Desvl's Blog" type="rss" xmlUrl="https://desvl.xyz/atom.xml"/>
    <outline text="Hkvision's Blog" type="rss" xmlUrl="https://hkvision.cn/index.xml"/>
    <outline text="Deepzz's Blog" type="rss" xmlUrl="https://deepzz.com/feed"/>
    <outline text="Lucifer's Blog" type="rss" xmlUrl="https://lucifer.ren/blog/atom.xml"/>
    <outline text="Glumes's Blog" type="rss" xmlUrl="https://glumes.com/index.xml"/>
    <outline text="Josherich's Blog" type="rss" xmlUrl="https://www.josherich.me/feed.xml"/>
    <outline text="Xzhsh's Blog" type="rss" xmlUrl="https://xzhsh.ch/index.xml"/>
    <outline text="Fsky7's Blog" type="rss" xmlUrl="https://blog.fsky7.com/feed"/>
    <outline text="Jiyang00's Blog" type="rss" xmlUrl="https://www.jiyang00.cn/atom.xml"/>
    <outline text="Anran758's Blog" type="rss" xmlUrl="https://anran758.github.io/blog/atom.xml"/>
    <outline text="Ioiox's Blog" type="rss" xmlUrl="https://www.ioiox.com/feed"/>
    <outline text="Axionl's Blog" type="rss" xmlUrl="https://axionl.me/index.xml"/>
    <outline text="Darmau's Blog" type="rss" xmlUrl="https://darmau.co/zh/article/rss.xml"/>
    <outline text="Cxyxiaowu's Blog" type="rss" xmlUrl="https://www.cxyxiaowu.com/feed"/>
    <outline text="Jy
    <outline text="Pin1121's Blog" type="rss" xmlUrl="https://pin1121.blogspot.com/feeds/posts/default"/>
  </body>
</opml>

评论

浏览统计