Feedbin Notifier
Provides a basic notification service for the RSS aggregator Feedbin.
Qu'est-ce que Feedbin Notifier ?
Feedbin Notifier est une extension Chrome développée par Thunraz, et sa fonction principale est "Provides a basic notification service for the RSS aggregator Feedbin.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Feedbin Notifier
Téléchargez les fichiers d'extension Feedbin Notifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Feedbin Notifier |
ID | ciijafmjfcdbilnifhohdfhojaokpcpg |
URL Officiel | https://chromewebstore.google.com/detail/feedbin-notifier/ciijafmjfcdbilnifhohdfhojaokpcpg |
Description | Provides a basic notification service for the RSS aggregator Feedbin. |
Taille du Fichier | 16.44 KB |
Nombre d'Installations | 51 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2021-04-16 |
Date de Publication | 2018-05-28 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Thunraz |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |