Feedly Filter
Filter articles in Feedly by popularity.
What is Feedly Filter?
Feedly Filter is a Chrome extension developed by thowi, and its main feature is "Filter articles in Feedly by popularity.".
Extension Screenshots
Download Feedly Filter Extension CRX File
Download Feedly Filter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Feedly Filter |
ID | knmganefaaffehhmibggliimfdolmpba |
Official URL | https://chromewebstore.google.com/detail/feedly-filter/knmganefaaffehhmibggliimfdolmpba |
Description | Filter articles in Feedly by popularity. |
File Size | 49.68 KB |
Installation Count | 100 |
Current Version | 1.0.9 |
Last Updated | 2019-07-20 |
Publish Date | 2019-07-20 |
Rating | 5.00/5 Total 2 Ratings |
Developer | thowi |
Payment Type | free |
Extension Website | https://github.com/thowi/feedly-filter-chrome-extension |
Supported Languages | 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" } } |