Feedbin Notifier
Provides a basic notification service for the RSS aggregator Feedbin.
Co je Feedbin Notifier?
Feedbin Notifier je rozšíření Chrome vyvinuté Thunraz, a jeho hlavní funkcí je „Provides a basic notification service for the RSS aggregator Feedbin.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Feedbin Notifier
Stáhněte si soubory rozšíření Feedbin Notifier ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Feedbin Notifier |
ID | ciijafmjfcdbilnifhohdfhojaokpcpg |
Oficiální URL | https://chromewebstore.google.com/detail/feedbin-notifier/ciijafmjfcdbilnifhohdfhojaokpcpg |
Popis | Provides a basic notification service for the RSS aggregator Feedbin. |
Velikost souboru | 16.44 KB |
Počet instalací | 51 |
Aktuální Verze | 1.0.0 |
Poslední Aktualizace | 2021-04-16 |
Datum Vydání | 2018-05-28 |
Hodnocení | 5.00/5 Celkem 3 Hodnocení |
Vývojář | Thunraz |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" ] } |