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