Feedly Filter
Filter articles in Feedly by popularity.
O que é Feedly Filter?
Feedly Filter é uma extensão do Chrome desenvolvida por thowi, e sua principal característica é "Filter articles in Feedly by popularity.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Feedly Filter
Baixe arquivos de extensão Feedly Filter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Feedly Filter |
ID | knmganefaaffehhmibggliimfdolmpba |
URL Oficial | https://chromewebstore.google.com/detail/feedly-filter/knmganefaaffehhmibggliimfdolmpba |
Descrição | Filter articles in Feedly by popularity. |
Tamanho do Arquivo | 49.68 KB |
Contagem de Instalações | 100 |
Versão Atual | 1.0.9 |
Última Atualização | 2019-07-20 |
Data de Publicação | 2019-07-20 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | thowi |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/thowi/feedly-filter-chrome-extension |
Idiomas Suportados | 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" } } |