Feedbin Notifier
Provides a basic notification service for the RSS aggregator Feedbin.
Feedbin Notifierとは何ですか?
Feedbin NotifierはThunrazによって開発されたChromeの拡張機能で、その主な機能は「Provides a basic notification service for the RSS aggregator Feedbin.」です。
拡張機能のスクリーンショット
Feedbin Notifier拡張機能のCRXファイルをダウンロード
Feedbin Notifier拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Feedbin Notifier shows how many unread feeds you have in your Feedbin account. Just enter your login credentials, hit Save and you're good to go! While reading through the articles in Feedbin, the unread items badge on the extension is updated live.
拡張機能の基本情報
名前 | Feedbin Notifier |
ID | ciijafmjfcdbilnifhohdfhojaokpcpg |
公式URL | https://chromewebstore.google.com/detail/feedbin-notifier/ciijafmjfcdbilnifhohdfhojaokpcpg |
説明 | Provides a basic notification service for the RSS aggregator Feedbin. |
ファイルサイズ | 16.44 KB |
インストール数 | 51 |
現在のバージョン | 1.0.0 |
最終更新日 | 2021-04-16 |
公開日 | 2018-05-28 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | Thunraz |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Thunraz", "version": "1.0.0", "name": "Feedbin Notifier", "description": "Provides a basic notification service for the RSS aggregator Feedbin.", "icons": { "16": "images\/feedbin-16.png", "32": "images\/feedbin-32.png", "48": "images\/feedbin-48.png", "128": "images\/feedbin-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/feedbin.com\/*", "https:\/\/www.feedbin.com\/*" ], "js": [ "js\/browser-polyfill.min.js", "js\/feedbin.js" ] } ], "background": { "scripts": [ "js\/browser-polyfill.min.js", "js\/background.js" ] }, "options_ui": { "page": "options.html" }, "browser_action": { "default_icon": { "16": "images\/feedbin-16.png", "32": "images\/feedbin-32.png", "48": "images\/feedbin-48.png", "128": "images\/feedbin-128.png" } }, "permissions": [ "alarms", "https:\/\/*.feedbin.com\/*" ], "web_accessible_resources": [ "js\/feedbin.js" ] } |