Feedly Filter
Filter articles in Feedly by popularity.
Vad är Feedly Filter?
Feedly Filter är en Chrome-tillägg utvecklad av thowi, och dess huvudfunktion är "Filter articles in Feedly by popularity.".
Tilläggsskärmbilder
Ladda ner Feedly Filter-förlängningens CRX-fil
Ladda ner Feedly Filter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Feedly Filter |
ID | knmganefaaffehhmibggliimfdolmpba |
Officiell webbadress | https://chromewebstore.google.com/detail/feedly-filter/knmganefaaffehhmibggliimfdolmpba |
Beskrivning | Filter articles in Feedly by popularity. |
Filstorlek | 49.68 KB |
Antal Installationer | 100 |
Aktuell Version | 1.0.9 |
Senast Uppdaterad | 2019-07-20 |
Publiceringsdatum | 2019-07-20 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | thowi |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/thowi/feedly-filter-chrome-extension |
Stödda Språk | 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" } } |