Feedly Filter

Filter articles in Feedly by popularity.

Feedly Filter là gì?

Feedly Filter là một tiện ích mở rộng Chrome được phát triển bởi thowi, và tính năng chính của nó là "Filter articles in Feedly by popularity.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Feedly Filter

Tải xuống các tệp mở rộng Feedly Filter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Feedly Filter Feedly Filter
ID knmganefaaffehhmibggliimfdolmpba
URL Chính Thức https://chromewebstore.google.com/detail/feedly-filter/knmganefaaffehhmibggliimfdolmpba
Mô tả Filter articles in Feedly by popularity.
Kích Thước Tệp 49.68 KB
Số Lần Cài Đặt 100
Phiên Bản Hiện Tại 1.0.9
Cập Nhật Lần Cuối 2019-07-20
Ngày Phát Hành 2019-07-20
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển thowi
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/thowi/feedly-filter-chrome-extension
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}