Feedly Filter

Filter articles in Feedly by popularity.

Τι είναι το Feedly Filter;

Το Feedly Filter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον thowi, και η κύρια λειτουργία του είναι "Filter articles in Feedly by popularity.".

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

screenshot

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

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

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

                        This extension adds a slider to the Feedly app to filter the articles based on their popularity rating.

This will help you to focus on popular news and skip the rest.

Source code available at https://github.com/thowi/feedly-filter-chrome-extension.                    

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

Όνομα Feedly Filter Feedly Filter
ID knmganefaaffehhmibggliimfdolmpba
Επίσημο URL https://chromewebstore.google.com/detail/feedly-filter/knmganefaaffehhmibggliimfdolmpba
Περιγραφή Filter articles in Feedly by popularity.
Μέγεθος Αρχείου 49.68 KB
Αριθμός Εγκαταστάσεων 100
Τρέχουσα Έκδοση 1.0.9
Τελευταία Ενημέρωση 2019-07-20
Ημερομηνία Δημοσίευσης 2019-07-20
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής thowi
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/thowi/feedly-filter-chrome-extension
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Feedly Filter",
    "version": "1.0.9",
    "manifest_version": 2,
    "description": "Filter articles in Feedly by popularity.",
    "permissions": [
        "http:\/\/feedly.com\/",
        "http:\/\/*.feedly.com\/",
        "https:\/\/feedly.com\/",
        "https:\/\/*.feedly.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/feedly.com\/*",
                "http:\/\/*.feedly.com\/*",
                "https:\/\/feedly.com\/*",
                "https:\/\/*.feedly.com\/*"
            ],
            "css": [
                "filter.css"
            ],
            "js": [
                "util.js",
                "throttle.js",
                "eventtargetimpl.js",
                "model.js",
                "feedly.js",
                "filter.js",
                "main.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    }
}