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 |
官方網址 | 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" } } |