Feedbin Notifier

Provides a basic notification service for the RSS aggregator Feedbin.

¿Qué es Feedbin Notifier?

Feedbin Notifier es una extensión de Chrome desarrollada por Thunraz, y su función principal es "Provides a basic notification service for the RSS aggregator Feedbin.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Feedbin Notifier

Descarga archivos de extensión Feedbin Notifier en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Feedbin Notifier Feedbin Notifier
ID ciijafmjfcdbilnifhohdfhojaokpcpg
URL Oficial https://chromewebstore.google.com/detail/feedbin-notifier/ciijafmjfcdbilnifhohdfhojaokpcpg
Descripción Provides a basic notification service for the RSS aggregator Feedbin.
Tamaño del Archivo 16.44 KB
Cantidad de Instalaciones 51
Versión Actual 1.0.0
Última Actualización 2021-04-16
Fecha de Publicación 2018-05-28
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador Thunraz
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    ]
}