Feedly Star Opener
Open feedly saved items in background tab
什麼是Feedly Star Opener?
Feedly Star Opener是由softantenna開發的Chrome擴展程式,該擴展的主要功能是“Open feedly saved items in background tab”。
擴展截圖
下載Feedly Star Opener擴展crx文件
下載Feedly Star Opener擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is a Chrome extension that opens all items saved (Read Later) in Feedly at once in the background.
Pressing the "w" key in the Read Later view will open 8 articles at once by default.
Please select "Title-Only View" in the Read Later view. Other views are not supported.
Feedlyで保存(Read Later)したアイテムをバックグラウンドで一気に開くChrome拡張です。
気になる記事を保存しておき、まとめて後から確認したい場合に便利です。Read Laterビューで"w"キーを押すとデフォルトで8個の記事をまとめて開く事ができます。
※Read Laterビューでは「Title-Only View」を選択してください。それ以外の表示方法には対応していません。 擴展基本資訊
| 名稱 | |
| ID | hecknmjndpndohooejpacafgliphbbop |
| 官方網址 | https://chromewebstore.google.com/detail/feedly-star-opener/hecknmjndpndohooejpacafgliphbbop |
| 簡介 | Open feedly saved items in background tab |
| 檔案大小 | 51.35 KB |
| 安裝次數 | 53 |
| 目前版本 | 3.3 |
| 更新時間 | 2023-12-03 |
| 上架時間 | 2018-03-22 |
| 評分 | 5.00/5 共 3 次評分 |
| 開發者 | softantenna |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Feedly Star Opener",
"version": "3.3",
"description": "Open feedly saved items in background tab",
"content_scripts": [
{
"matches": [
"http:\/\/feedly.com\/*",
"https:\/\/feedly.com\/*"
],
"js": [
"js\/contentscripts.js"
]
}
],
"options_page": "html\/options.html",
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
],
"host_permissions": [
"http:\/\/feedly.com\/*",
"https:\/\/feedly.com\/*"
],
"icons": {
"16": "img\/fav2_16.png",
"48": "img\/fav2_48.png",
"128": "img\/fav2_128.png"
}
} | |