Feedbin Notifier
Provides a basic notification service for the RSS aggregator Feedbin.
Wat is Feedbin Notifier?
Feedbin Notifier is een Chrome-extensie ontwikkeld door Thunraz, en de belangrijkste functie is "Provides a basic notification service for the RSS aggregator Feedbin.".
Extensie Screenshots
Download het CRX-bestand van de extensie Feedbin Notifier
Download Feedbin Notifier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Feedbin Notifier |
ID | ciijafmjfcdbilnifhohdfhojaokpcpg |
Officiële URL | https://chromewebstore.google.com/detail/feedbin-notifier/ciijafmjfcdbilnifhohdfhojaokpcpg |
Beschrijving | Provides a basic notification service for the RSS aggregator Feedbin. |
Bestandsgrootte | 16.44 KB |
Aantal Installaties | 51 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2021-04-16 |
Publicatiedatum | 2018-05-28 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | Thunraz |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |