Feedly Filter

Filter articles in Feedly by popularity.

Co to jest Feedly Filter?

Feedly Filter to rozszerzenie Chrome opracowane przez thowi, a jego główną funkcją jest „Filter articles in Feedly by popularity.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Feedly Filter

Pobierz pliki rozszerzeń Feedly Filter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Feedly Filter Feedly Filter
ID knmganefaaffehhmibggliimfdolmpba
Oficjalny URL https://chromewebstore.google.com/detail/feedly-filter/knmganefaaffehhmibggliimfdolmpba
Opis Filter articles in Feedly by popularity.
Rozmiar pliku 49.68 KB
Liczba instalacji 100
Aktualna Wersja 1.0.9
Ostatnia Aktualizacja 2019-07-20
Data Publikacji 2019-07-20
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper thowi
Typ Płatności free
Strona Rozszerzenia https://github.com/thowi/feedly-filter-chrome-extension
Obsługiwane Języki 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"
    }
}