Feedbin Notifier

Provides a basic notification service for the RSS aggregator Feedbin.

O que é Feedbin Notifier?

Feedbin Notifier é uma extensão do Chrome desenvolvida por Thunraz, e sua principal característica é "Provides a basic notification service for the RSS aggregator Feedbin.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Feedbin Notifier

Baixe arquivos de extensão Feedbin Notifier no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Feedbin Notifier Feedbin Notifier
ID ciijafmjfcdbilnifhohdfhojaokpcpg
URL Oficial https://chromewebstore.google.com/detail/feedbin-notifier/ciijafmjfcdbilnifhohdfhojaokpcpg
Descrição Provides a basic notification service for the RSS aggregator Feedbin.
Tamanho do Arquivo 16.44 KB
Contagem de Instalações 51
Versão Atual 1.0.0
Última Atualização 2021-04-16
Data de Publicação 2018-05-28
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Thunraz
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}