Tapas RSS Button
A webextension that adds an RSS feed button on tapas.io webcomic pages
什么是Tapas RSS Button?
Tapas RSS Button是由victal开发的Chrome扩展程序,该扩展的主要功能是“A webextension that adds an RSS feed button on tapas.io webcomic pages”。
扩展截图
下载Tapas RSS Button扩展crx文件
下载Tapas RSS Button扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Tapas.io is a platform for publishing and reading webcomics and webnovels and, while it still provides RSS feeds for the series it hosts, there is no UI component to access these feeds. This webextension restores such functionality, adding an 'RSS' button beside the existing 'Subscribe' buttons that allow for subscribing to a series inside the platform. The only permissions requested by this extension are: - Access to data in https://tapas.io pages, since it is needed to add code to create the RSS button and link it to the series RSS feed on the page. - Storage access to save and restore configurations
扩展基本信息
名称 | |
ID | oaodnnbbhbpcaoliplcpdhipcmgmpnnh |
官方URL | https://chromewebstore.google.com/detail/tapas-rss-button/oaodnnbbhbpcaoliplcpdhipcmgmpnnh |
简介 | A webextension that adds an RSS feed button on tapas.io webcomic pages |
文件大小 | 70.32 KB |
安装次数 | 277 |
当前版本 | 1.1.0 |
更新时间 | 2023-04-16 |
上架时间 | 2020-06-30 |
评分 | 5.00/5 共2次评分 |
开发者 | victal |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://github.com/victal/tapas-rss/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tapas RSS Button", "version": "1.1.0", "description": "A webextension that adds an RSS feed button on tapas.io webcomic pages", "icons": { "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "96": "icons\/icon-96.png", "128": "icons\/icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/tapas.io\/series\/*", "*:\/\/tapas.io\/episode\/*", "*:\/\/m.tapas.io\/series\/*", "*:\/\/m.tapas.io\/episode\/*" ], "js": [ "src\/mutation.js", "src\/add_rss.js", "src\/index.js" ], "css": [ "css\/add_rss.css" ], "all_frames": true } ], "permissions": [ "storage" ], "options_ui": { "page": "src\/options\/index.html" }, "browser_specific_settings": { "gecko": { "id": "{395c081e-9f3b-4218-9587-bcbfa467c3b6}" } } } |