Notifier for Feedly™

is a smart badged powered toolbar notifier for feedly.com

Τι είναι το Notifier for Feedly™;

Το Notifier for Feedly™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον chYer, και η κύρια λειτουργία του είναι "is a smart badged powered toolbar notifier for feedly.com".

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

screenshot

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

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

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

                        Notifier for Feedly is a badged powered toolbar notifier for feedly.com, a productive way to organize, read and share the content of your favorite feeds, blogs and news sites.

FAQs:
What is feedly.com?
Feedly is a news aggregator application for various web browsers and mobile devices running iOS and Android, also available as a cloud-based service. It compiles news feeds from a variety of online sources for the user to customize and share with others.

How can I use Feedly Notifier Plus?
After installation, you will see a gray toolbar button with feedly's icon on it. Press the toolbar button to open feedly.com. After a few seconds, the toolbar button color switches to green which indicates the extension is now connected to feedly.com. Also a badge notification appears with the number of unread feeds. Please note that if you have an open tab feedly webpage, you need to manually refresh the tab for the notifier to fetch your token id and be able to check your feeds.                    

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

Όνομα Notifier for Feedly™ Notifier for Feedly™
ID bbepjjjeionddbieffjjllpiaogcllhc
Επίσημο URL https://chromewebstore.google.com/detail/notifier-for-feedly/bbepjjjeionddbieffjjllpiaogcllhc
Περιγραφή is a smart badged powered toolbar notifier for feedly.com
Μέγεθος Αρχείου 96.16 KB
Αριθμός Εγκαταστάσεων 402
Τρέχουσα Έκδοση 0.2.4
Τελευταία Ενημέρωση 2019-04-07
Ημερομηνία Δημοσίευσης 2019-04-07
Αξιολόγηση 3.71/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής chYer
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://mybrowseraddon.com/feedly.html
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/schomery/feedly-notifier-plus/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notifier for Feedly\u2122",
    "description": "is a smart badged powered toolbar notifier for feedly.com",
    "author": "Jeremy Schomery",
    "version": "0.2.4",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs",
        "cookies",
        "alarms",
        "idle",
        "*:\/\/feedly.com\/*"
    ],
    "browser_action": {
        "default_title": "Feedly Notifier Plus (disconnected)",
        "default_icon": {
            "16": "data\/icons\/gray\/16.png",
            "24": "data\/icons\/gray\/24.png",
            "32": "data\/icons\/gray\/32.png",
            "48": "data\/icons\/gray\/48.png",
            "64": "data\/icons\/gray\/64.png"
        }
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "data\/options\/index.html",
        "chrome_style": true
    },
    "homepage_url": "https:\/\/mybrowseraddon.com\/feedly.html",
    "icons": {
        "16": "data\/icons\/green\/16.png",
        "24": "data\/icons\/green\/24.png",
        "32": "data\/icons\/green\/32.png",
        "48": "data\/icons\/green\/48.png",
        "64": "data\/icons\/green\/64.png",
        "128": "data\/icons\/green\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/feedly.com\/*"
            ],
            "js": [
                "data\/inject.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ]
}