Feedly Filter
Filter articles in Feedly by popularity.
什么是Feedly Filter?
Feedly Filter是由thowi开发的Chrome扩展程序,该扩展的主要功能是“Filter articles in Feedly by popularity.”。
扩展截图
下载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 |
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" } } |