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 |
官方網址 | 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" } } |