Feedly Open All Unread
Adds a button to feedly.com to open all unread articles in new tabs
什么是Feedly Open All Unread?
Feedly Open All Unread是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Adds a button to feedly.com to open all unread articles in new tabs”。
扩展截图
下载Feedly Open All Unread扩展crx文件
下载Feedly Open All Unread扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds a button to feedly.com to open all unread articles in new tabs 扩展基本信息
| 名称 | |
| ID | blmhlkddebpmcjihpgbnhiinjfibekkf |
| 官方URL | https://chromewebstore.google.com/detail/feedly-open-all-unread/blmhlkddebpmcjihpgbnhiinjfibekkf |
| 简介 | Adds a button to feedly.com to open all unread articles in new tabs |
| 文件大小 | 8.03 KB |
| 安装次数 | 15 |
| 当前版本 | 1.3 |
| 更新时间 | 2019-01-01 |
| 上架时间 | 2019-01-01 |
| 评分 | 1.00/5 共1次评分 |
| 开发者 | Unknown |
| 付费类型 | free |
| 帮助页面URL | https://github.com/cypressious/ff-feedly-open-unread |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Feedly Open All Unread",
"version": "1.3",
"description": "Adds a button to feedly.com to open all unread articles in new tabs",
"homepage_url": "https:\/\/github.com\/cypressious\/ff-feedly-open-unread",
"content_scripts": [
{
"matches": [
"*:\/\/feedly.com\/*"
],
"js": [
"browser-polyfill.min.js",
"content-script.js"
]
}
],
"background": {
"scripts": [
"browser-polyfill.min.js",
"background.js"
]
},
"options_ui": {
"page": "options.html"
},
"permissions": [
"storage"
]
} | |