Feedly Filter

Filter articles in Feedly by popularity.

Feedly Filterとは何ですか?

Feedly Filterはthowiによって開発されたChromeの拡張機能で、その主な機能は「Filter articles in Feedly by popularity.」です。

拡張機能のスクリーンショット

screenshot

Feedly Filter拡張機能のCRXファイルをダウンロード

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"
    }
}