Feedly Filter

Filter articles in Feedly by popularity.

Wat is Feedly Filter?

Feedly Filter is een Chrome-extensie ontwikkeld door thowi, en de belangrijkste functie is "Filter articles in Feedly by popularity.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Feedly Filter

Download Feedly Filter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Feedly Filter Feedly Filter
ID knmganefaaffehhmibggliimfdolmpba
Officiële URL https://chromewebstore.google.com/detail/feedly-filter/knmganefaaffehhmibggliimfdolmpba
Beschrijving Filter articles in Feedly by popularity.
Bestandsgrootte 49.68 KB
Aantal Installaties 100
Huidige Versie 1.0.9
Laatst Bijgewerkt 2019-07-20
Publicatiedatum 2019-07-20
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar thowi
Betalingswijze free
Extensiewebsite https://github.com/thowi/feedly-filter-chrome-extension
Ondersteunde Talen 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"
    }
}