Feedly Filter
Filter articles in Feedly by popularity.
Apa itu Feedly Filter?
Feedly Filter adalah ekstensi Chrome yang dikembangkan oleh thowi, dan fitur utamanya adalah "Filter articles in Feedly by popularity.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Feedly Filter
Unduh file ekstensi Feedly Filter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Feedly Filter |
ID | knmganefaaffehhmibggliimfdolmpba |
URL Resmi | https://chromewebstore.google.com/detail/feedly-filter/knmganefaaffehhmibggliimfdolmpba |
Deskripsi | Filter articles in Feedly by popularity. |
Ukuran File | 49.68 KB |
Jumlah Instalasi | 100 |
Versi Saat Ini | 1.0.9 |
Terakhir Diperbarui | 2019-07-20 |
Tanggal Publikasi | 2019-07-20 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | thowi |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/thowi/feedly-filter-chrome-extension |
Bahasa yang Didukung | 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" } } |