Easy to RSS
Retreive RSS feeds URLs from WebSite, RSSHub supported
什么是Easy to RSS?
Easy to RSS是由https://idealclover.top开发的Chrome扩展程序,该扩展的主要功能是“Retreive RSS feeds URLs from WebSite, RSSHub supported”。
扩展截图
下载Easy to RSS扩展crx文件
下载Easy to RSS扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
pre release version of Easy-to-RSS https://github.com/idealclover/Easy-to-RSS 主要功能:获取网页RSS,复制到剪贴板并打开该RSS网页。与RSSHub联动
扩展基本信息
名称 | Easy to RSS |
ID | hbcmpkcpbnecinpngdnfbnknfkdpdfli |
官方URL | https://chromewebstore.google.com/detail/easy-to-rss/hbcmpkcpbnecinpngdnfbnknfkdpdfli |
简介 | Retreive RSS feeds URLs from WebSite, RSSHub supported |
文件大小 | 21.43 KB |
安装次数 | 2,686 |
当前版本 | 0.2.0 |
更新时间 | 2018-12-18 |
上架时间 | 2018-12-17 |
评分 | 4.38/5 共8次评分 |
开发者 | https://idealclover.top |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Easy to RSS", "description": "Retreive RSS feeds URLs from WebSite, RSSHub supported", "version": "0.2.0", "author": "@idealclover", "homepage_url": "https:\/\/github.com\/idealclover\/Easy-to-RSS", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "clipboardWrite", "activeTab", "storage", "tabs" ], "browser_action": { "default_icon": "img\/icon_default.png", "default_popup": "popup.html", "default_title": "Click to view RSS feeds for this page" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ] } ], "options_ui": { "page": "options.html", "open_in_tab": false }, "icons": { "128": "img\/icon_128.png" } } |