Feedbin Notifier

Provides a basic notification service for the RSS aggregator Feedbin.

Τι είναι το Feedbin Notifier;

Το Feedbin Notifier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Thunraz, και η κύρια λειτουργία του είναι "Provides a basic notification service for the RSS aggregator Feedbin.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Feedbin Notifier

Λήψη αρχείων επέκτασης Feedbin Notifier σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Feedbin Notifier Feedbin Notifier
ID ciijafmjfcdbilnifhohdfhojaokpcpg
Επίσημο URL https://chromewebstore.google.com/detail/feedbin-notifier/ciijafmjfcdbilnifhohdfhojaokpcpg
Περιγραφή Provides a basic notification service for the RSS aggregator Feedbin.
Μέγεθος Αρχείου 16.44 KB
Αριθμός Εγκαταστάσεων 51
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2021-04-16
Ημερομηνία Δημοσίευσης 2018-05-28
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Thunraz
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    ]
}