Feedbin Notifier
Provides a basic notification service for the RSS aggregator Feedbin.
What is Feedbin Notifier?
Feedbin Notifier is a Chrome extension developed by Thunraz, and its main feature is "Provides a basic notification service for the RSS aggregator Feedbin.".
Extension Screenshots
Download Feedbin Notifier Extension CRX File
Download Feedbin Notifier extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Feedbin Notifier |
ID | ciijafmjfcdbilnifhohdfhojaokpcpg |
Official URL | https://chromewebstore.google.com/detail/feedbin-notifier/ciijafmjfcdbilnifhohdfhojaokpcpg |
Description | Provides a basic notification service for the RSS aggregator Feedbin. |
File Size | 16.44 KB |
Installation Count | 51 |
Current Version | 1.0.0 |
Last Updated | 2021-04-16 |
Publish Date | 2018-05-28 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Thunraz |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |