Feedly Filter
Filter articles in Feedly by popularity.
Qu'est-ce que Feedly Filter ?
Feedly Filter est une extension Chrome développée par thowi, et sa fonction principale est "Filter articles in Feedly by popularity.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Feedly Filter
Téléchargez les fichiers d'extension Feedly Filter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Feedly Filter |
ID | knmganefaaffehhmibggliimfdolmpba |
URL Officiel | https://chromewebstore.google.com/detail/feedly-filter/knmganefaaffehhmibggliimfdolmpba |
Description | Filter articles in Feedly by popularity. |
Taille du Fichier | 49.68 KB |
Nombre d'Installations | 100 |
Version Actuelle | 1.0.9 |
Dernière Mise à Jour | 2019-07-20 |
Date de Publication | 2019-07-20 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | thowi |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/thowi/feedly-filter-chrome-extension |
Langues Prises en Charge | 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" } } |