rsstodolist
Send links to rsstodolist - https://rsstodolist.eu/
什么是rsstodolist?
rsstodolist是由paulgreg开发的Chrome扩展程序,该扩展的主要功能是“Send links to rsstodolist - https://rsstodolist.eu/”。
扩展截图
下载rsstodolist扩展crx文件
下载rsstodolist扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
That extension is a front-end for the RSS todo list application : https://rsstodolist.eu/ It allows you, by a single click, to add the URL of the webpage you're viewing to an RSS feed. Typical example is marking web pages to read later. Also, if you know the feed name of a friend of yours, you may also "push" links to it's RSS feed. That's another cool use case. Feeds are public so anyone can publish to any feeds. Be aware of that before using it for sensible URLs. But, instead of using the public server (rsstodolist.eu), you can also deploy the app on your own server (https://github.com/paulgreg/rsstodolist-node-server) and configure the extension to use that endpoint to have maximum privacy and security. Check https://rsstodolist.eu/ for further details. Application and extension are open source.
扩展基本信息
名称 | rsstodolist |
ID | gjnfedompndjcoeannmcppbckbkjhpkd |
官方URL | https://chromewebstore.google.com/detail/rsstodolist/gjnfedompndjcoeannmcppbckbkjhpkd |
简介 | Send links to rsstodolist - https://rsstodolist.eu/ |
文件大小 | 34.94 KB |
安装次数 | 39 |
当前版本 | 1.8.2 |
更新时间 | 2023-03-25 |
上架时间 | 2018-11-18 |
评分 | 5.00/5 共2次评分 |
开发者 | paulgreg |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://rsstodolist.eu/ |
帮助页面URL | https://github.com/paulgreg/rsstodolist-addon/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "rsstodolist", "version": "1.8.2", "description": "Send links to rsstodolist - https:\/\/rsstodolist.eu\/", "homepage_url": "https:\/\/github.com\/paulgreg\/rsstodolist-addon", "icons": { "16": "imgs\/rss16.png", "48": "imgs\/rss48.png", "96": "imgs\/rss96.png", "128": "imgs\/rss.png" }, "permissions": [ "activeTab", "notifications", "storage", "contextMenus" ], "host_permissions": [ "*:\/\/*\/*" ], "background": { "service_worker": "background-script.js", "type": "module" }, "action": { "default_icon": "imgs\/rss.png", "default_title": "rsstodolist", "default_popup": "index.html" } } |