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"
]
} | |