Feedly Filter
Filter articles in Feedly by popularity.
Cos'è Feedly Filter?
Feedly Filter è un'estensione di Chrome sviluppata da thowi, e la sua funzione principale è "Filter articles in Feedly by popularity.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Feedly Filter
Scarica i file di estensione Feedly Filter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Feedly Filter |
ID | knmganefaaffehhmibggliimfdolmpba |
URL Ufficiale | https://chromewebstore.google.com/detail/feedly-filter/knmganefaaffehhmibggliimfdolmpba |
Descrizione | Filter articles in Feedly by popularity. |
Dimensione del File | 49.68 KB |
Conteggio Installazioni | 100 |
Versione Corrente | 1.0.9 |
Ultimo Aggiornamento | 2019-07-20 |
Data di Pubblicazione | 2019-07-20 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | thowi |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/thowi/feedly-filter-chrome-extension |
Lingue Supportate | 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" } } |