Feedbin Notifier

Provides a basic notification service for the RSS aggregator Feedbin.

Was ist Feedbin Notifier?

Feedbin Notifier ist eine Chrome-Erweiterung, die von Thunraz entwickelt wurde, und ihr Hauptmerkmal ist "Provides a basic notification service for the RSS aggregator Feedbin.".

Erweiterungsscreenshots

screenshot
screenshot

Feedbin Notifier-Erweiterungs-CRX-Datei herunterladen

Laden Sie Feedbin Notifier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Feedbin Notifier Feedbin Notifier
ID ciijafmjfcdbilnifhohdfhojaokpcpg
Offizielle URL https://chromewebstore.google.com/detail/feedbin-notifier/ciijafmjfcdbilnifhohdfhojaokpcpg
Beschreibung Provides a basic notification service for the RSS aggregator Feedbin.
Dateigröße 16.44 KB
Installationsanzahl 51
Aktuelle Version 1.0.0
Letztes Update 2021-04-16
Veröffentlichungsdatum 2018-05-28
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Thunraz
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}