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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } |