Feedly Filter
Filter articles in Feedly by popularity.
Что такое Feedly Filter?
Feedly Filter - это расширение Chrome, разработанное thowi, и его основная функция - "Filter articles in Feedly by popularity.".
Снимки экрана расширения
Скачать файл CRX расширения Feedly Filter
Скачайте файлы расширений 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 |
Официальный URL | 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" } } |