Feedly Filter

Filter articles in Feedly by popularity.

Co je Feedly Filter?

Feedly Filter je rozšíření Chrome vyvinuté thowi, a jeho hlavní funkcí je „Filter articles in Feedly by popularity.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Feedly Filter

Stáhněte si soubory rozšíření Feedly Filter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Feedly Filter Feedly Filter
ID knmganefaaffehhmibggliimfdolmpba
Oficiální URL https://chromewebstore.google.com/detail/feedly-filter/knmganefaaffehhmibggliimfdolmpba
Popis Filter articles in Feedly by popularity.
Velikost souboru 49.68 KB
Počet instalací 100
Aktuální Verze 1.0.9
Poslední Aktualizace 2019-07-20
Datum Vydání 2019-07-20
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář thowi
Typ Platby free
Webové stránky Rozšíření https://github.com/thowi/feedly-filter-chrome-extension
Podporované Jazyky 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"
    }
}