FeedFilter
Filters Youtube feed to based user-created custom rules.
ما هو FeedFilter؟
FeedFilter هو إضافة Chrome تم تطويرها بواسطة Allan Rempel، والميزة الرئيسية لها هي "Filters Youtube feed to based user-created custom rules.".
تحميل ملف CRX للإضافة FeedFilter
قم بتنزيل ملفات الامتداد FeedFilter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Filters your subscription feed based on custom rules. For example, I wanted to subscribe to only some of the videos that a channel published, while ignoring the rest.
Supports regular expressions (for those who know what that is). معلومات أساسية عن التمديد
| الاسم | |
| ID | nkbglieidoihblpjhjbghfieddecefmd |
| عنوان URL الرسمي | https://chrome.google.com/webstore/detail/feedfilter/nkbglieidoihblpjhjbghfieddecefmd |
| الوصف | Filters Youtube feed to based user-created custom rules. |
| حجم الملف | 56.02 KB |
| عدد التثبيتات | 12 |
| النسخة الحالية | 1.1 |
| آخر تحديث | 2015-02-06 |
| تاريخ النشر | 2015-02-06 |
| تقييم | 3.25/5 مجموع تقييمات 4 |
| المطور | Allan Rempel |
| نوع الدفع | free |
| اللغات المدعومة | de,en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_name__",
"description": "__MSG_description__",
"version": "1.1",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"storage",
"https:\/\/www.youtube.com\/"
],
"default_locale": "en",
"page_action": {
"default_icon": "filter24.png",
"default_title": "__MSG_name__",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"jquery.js",
"filter.js"
]
}
],
"options_page": "options.html",
"icons": {
"16": "filter16.png",
"24": "filter24.png",
"128": "filter128.png"
}
} | |