Feedly Filter

Filter articles in Feedly by popularity.

Feedly Filterคืออะไร?

Feedly Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย thowi และคุณลักษณะหลักของมันคือ "Filter articles in Feedly by popularity."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Feedly Filter

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}